This repository has been archived by the owner on Mar 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
84 lines (74 loc) · 2.33 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "eloipoch/symfony-mpwar-edition",
"license": "MIT",
"type": "project",
"description": "The \"Symfony MPWAR Edition\"",
"require": {
"php": ">=5.5",
"symfony/symfony": "~2.6",
"sensio/distribution-bundle": "2.3.*",
"sensio/framework-extra-bundle": "2.3.*",
"twig/extensions": "1.0.*",
"sensio/generator-bundle": "2.3.*",
"symfony/icu": "1.0.*",
"incenteev/composer-parameter-handler": "~2.1",
"symfony/monolog-bundle": "~2.3",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/orm": "2.5.x-dev",
"doctrine/dbal": "2.5.x-dev",
"doctrine/common": "2.5.x-dev",
"friendsofsymfony/rest-bundle": "1.4.*",
"jms/serializer-bundle": "0.13.*@dev",
"willdurand/hateoas-bundle": "1.0.*@dev",
"hautelook/templated-uri-bundle": "~2.0",
"willdurand/rest-extra-bundle": "~1.0",
"simple-bus/symfony-bridge": "~3.0",
"rhumsaa/uuid": "~2.8",
"igorw/compose": "~1.0",
"nikic/iter": "~1.1"
},
"require-dev": {
"phpunit/phpunit": "~4.5",
"behat/behat": "~3.0",
"behat/mink": "~1.6",
"behat/mink-browserkit-driver": "~1.2",
"behat/mink-extension": "~2.0",
"behat/symfony2-extension": "~2.0",
"mockery/mockery": "~0.9",
"fzaninotto/faker": "~1.4"
},
"autoload": {
"psr-0": {
"": "src/"
},
"psr-4": {
"MPWAR\\Api\\": "app/src",
"MPWAR\\": "src/MPWAR"
}
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "stable",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}