-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
47 lines (47 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
47
{
"name": "alterway/rest-hal-bundle",
"description": "manage HAL Rest API with Symfony2 http://stateless.co/hal_specification.html",
"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\\RestHalBundle": "src/"
}
},
"require": {
"php": "~5.3",
"symfony/symfony": "~2.2",
"sensio/framework-extra-bundle": "~2.2",
"nocarrier/hal": "~0.9.4"
},
"require-dev": {
"behat/behat": "~2.5",
"behat/gherkin": "~2.3",
"behat/mink-browserkit-driver": "~1.1",
"behat/mink-extension": "~1.2",
"behat/mink-sahi-driver": "~1.1",
"behat/symfony2-extension": "~1.1",
"kriswallsmith/buzz": "~0.5",
"phpunit/phpunit": "3.7.*"
}
}