forked from alterway/RestProblemBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
47 lines (47 loc) · 1.45 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
{
"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": "contact@laruchequiditoui.fr",
"homepage": "http://www.laruchequiditoui.fr/",
"role": "Copyright Holder"
},
{
"name": "Alter Way",
"email": "contact@alterway.fr",
"homepage": "http://www.alterway.fr",
"role": "Developer"
},
{
"name": "Jean-François Lépine",
"email": "jean-francois.lepine@alterway.fr",
"homepage": "https://www.twitter.com/Halleck45",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"Alterway\\Bundle\\RestProblemBundle": "src/"
}
},
"require": {
"php": ">=5.5.0",
"symfony/symfony": "~2.7",
"sensio/framework-extra-bundle": "^3.0"
},
"require-dev": {
"behat/behat": "~2.5",
"kriswallsmith/buzz": ">=0.5",
"phpunit/phpunit": "4.8.*",
"behat/symfony2-extension": "*@stable",
"behat/mink-extension": "*",
"behat/mink-browserkit-driver": "*",
"behat/mink-sahi-driver": "*",
"behat/gherkin": "@dev"
},
"minimum-stability": "stable"
}