-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
49 lines (48 loc) · 1.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
{
"name": "etna/check-service-provider",
"description": "Check Service Provider",
"keywords": ["check", "silex"],
"license": "proprietary",
"authors": [
{
"name": "ETNA",
"email": "dev@etna-alternance.net",
"homepage": "http://etna-alternance.net"
}
],
"require": {
"php": ">=5.5",
"silex/silex": "1.x"
},
"require-dev": {
"behat/behat": "2.x@stable",
"satooshi/php-coveralls": "dev-master",
"etna/composer-behat-utils": "0.x"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"classmap": [
"TestCheck/"
],
"psr-4": {
"ETNA\\Silex\\Provider\\Check\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"post-install-cmd": "mkdir -p tmp/behat && chmod 777 tmp/behat",
"post-update-cmd": "mkdir -p tmp/behat && chmod 777 tmp/behat"
},
"repositories": [
{
"type": "composer",
"url": "http://blu-composer.herokuapp.com"
}
]
}