-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.01 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
{
"autoload": {
"psr-4": {
"Scheduler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scheduler\\Test\\": "tests"
}
},
"require-dev": {
"behat/behat": "^3.0",
"bossa/phpspec2-expect": "dev-master",
"phpspec/phpspec": "^2.2",
"phpunit/dbunit": "^1.4",
"phpunit/phpunit": "^4.8",
"psy/psysh": "^0.5.2",
"rezzza/rest-api-behat-extension": "^2.0@dev"
},
"require": {
"php": "^5.6",
"crell/api-problem": "^1.7@dev",
"doctrine/dbal": "^2.5",
"radar/adr": "1.x-dev",
"symfony/yaml": "^2.7",
"vlucas/phpdotenv": "^2.0",
"zendframework/zend-diactoros": "^1.0@dev"
},
"scripts": {
"test": [
"phpspec run --format=progress",
"phpunit",
"behat --format=progress"
],
"post-install-cmd": [
"make"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}