-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
46 lines (46 loc) · 1.41 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
{
"name": "alterway/rest-problem-bundle",
"description": "way to respect Problem Details for HTTP APIs RFC (http://tools.ietf.org/html/draft-nottingham-http-problem-03)",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "La Ruche Qui Dit Oui!",
"email": "[email protected]",
"homepage": "http://www.laruchequiditoui.fr/",
"role": "Copyright Holder"
},
{
"name": "Alter Way",
"email": "[email protected]",
"homepage": "http://www.alterway.fr",
"role": "Developer"
},
{
"name": "Jean-François Lépine",
"email": "[email protected]",
"homepage": "https://www.twitter.com/Halleck45",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"Alterway\\Bundle\\RestProblemBundle": "src/"
}
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "~2.2",
"sensio/framework-extra-bundle": "~2.2"
},
"require-dev": {
"behat/behat": ">=2.2.2",
"kriswallsmith/buzz": ">=0.5",
"phpunit/phpunit": "3.7.*",
"behat/symfony2-extension": "*@stable",
"behat/mink-extension": "*",
"behat/mink-browserkit-driver": "*",
"behat/gherkin": "@dev"
},
"minimum-stability": "dev"
}