-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
60 lines (60 loc) · 2.14 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "bldr-io/bldr",
"description": "Simple Build System / Task Runner",
"require": {
"php": ">=5.5",
"bldr-io/composer-plugin": "~1.0.4",
"dflydev/embedded-composer": "dev-master",
"composer/composer": "^1.0",
"symfony/console": "~2.7",
"symfony/config": "~2.7",
"symfony/yaml": "~2.7",
"symfony/dependency-injection": "~2.7",
"symfony/expression-language": "~2.7",
"symfony/event-dispatcher": "~2.7",
"symfony/process": "~2.7",
"zendframework/zend-json": "~2.0",
"swiftmailer/swiftmailer": "~5.3",
"bldr-io/frontend-block": "~3.0.1",
"bldr-io/remote-block": "~2.0.5",
"yosymfony/toml": "~0.2@dev",
"jolicode/jolinotif": "^1.0"
},
"require-dev": {
"matthiasnoback/symfony-service-definition-validator": "~1.1",
"phpunit/phpunit": "~4.2",
"mikey179/vfsStream": "~1.4",
"squizlabs/php_codesniffer": "~2.2.0",
"mockery/mockery": "~0.9",
"raulfraile/ladybug": "~1.0",
"kherge/box": "~2.5.0",
"kherge/amend": "~3.0.4",
"phpspec/prophecy": "~1.1"
},
"license": "MIT",
"authors": [
{
"name": "Aaron Scherer",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Bldr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bldr\\Test\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": "Dflydev\\EmbeddedComposer\\Core\\Script::postAutoloadDump"
},
"config": {
"bin-dir": "bin"
},
"bin": [
"bin/bldr"
]
}