-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
103 lines (103 loc) · 3.13 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "lechatquidanse/bicing-api",
"description": "Symfony 4 REST API applying CQRS and DDD patterns, built with CI, driven by BDD",
"type": "project",
"license": "proprietary",
"require": {
"php": "^7.2",
"ext-iconv": "*",
"api-platform/api-pack": "^1.1",
"beberlei/assert": "^2.9",
"doctrine/doctrine-bundle": "^1.6.10",
"doctrine/doctrine-migrations-bundle": "^1.3|^2.0",
"doctrine/orm": "^2.5.11",
"eightpoints/guzzle-bundle": "^7.3",
"jms/serializer-bundle": "^2.3",
"jsor/doctrine-postgis": "^1.7",
"ramsey/uuid": "^3.7",
"ramsey/uuid-doctrine": "^1.4",
"sensio/framework-extra-bundle": "^5.2",
"sensiolabs/security-checker": "^5.0",
"simple-bus/doctrine-orm-bridge": "^5.0",
"simple-bus/message-bus": "^3.0",
"simple-bus/symfony-bridge": "^5.1",
"symfony/console": "^4.1",
"symfony/dotenv": "^4.1",
"symfony/flex": "^1.1",
"symfony/form": "^4.1",
"symfony/framework-bundle": "4.2.*",
"symfony/http-foundation": "v4.1.3",
"symfony/monolog-bundle": "^3.3",
"symfony/proxy-manager-bridge": "^4.1",
"symfony/validator": "^4.1",
"symfony/yaml": "^4.1"
},
"require-dev": {
"behat/behat": "^3.5",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.3",
"behat/symfony2-extension": "^2.1",
"behatch/contexts": "^3.2",
"easycorp/easy-log-handler": "^1.0.7",
"friendsofphp/php-cs-fixer": "^2.13",
"insolita/unused-scanner": "^1.1",
"phpspec/phpspec": "^5.1",
"phpstan/phpstan": "0.10.3",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "3.*",
"symfony/browser-kit": "*",
"symfony/css-selector": "*",
"symfony/debug-bundle": "*",
"symfony/panther": "*",
"symfony/phpunit-bridge": "*",
"symfony/stopwatch": "*",
"symfony/twig-bundle": "*",
"symfony/var-dumper": "*",
"symfony/web-profiler-bundle": "*"
},
"config": {
"bin-dir": "bin",
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"security-checker security:check": "script"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"id": "01C6D0DNGJKFD26GBGF1ZP3SSA",
"allow-contrib": true
}
}
}