-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
115 lines (114 loc) · 3.75 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
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "angelov/donut",
"license": "proprietary",
"type": "project",
"autoload": {
"psr-4": {
"Angelov\\Donut\\": "src/Donut",
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Angelov\\Donut\\Tests\\Api\\": "tests/Api",
"Angelov\\Donut\\Tests\\": "tests/",
"spec\\Angelov\\": "spec/"
}
},
"require": {
"php": "^7.1.3",
"ext-bcmath": "*",
"ext-mbstring": "*",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2",
"doctrine/doctrine-migrations-bundle": "^1.2",
"doctrine/migrations": "^1.5",
"doctrine/orm": "^2.5",
"friendsofsymfony/oauth-server-bundle": "^1.5",
"friendsofsymfony/rest-bundle": "^2.2",
"graphaware/reco4php": "dev-symfony-4",
"neo4j/neo4j-bundle": "^0.4",
"predis/predis": "^1.1",
"sensio/framework-extra-bundle": "^3.0.2",
"simple-bus/asynchronous-bundle": "^3.0",
"simple-bus/jms-serializer-bundle-bridge": "^3.0",
"simple-bus/rabbitmq-bundle-bridge": "^4.0",
"simple-bus/symfony-bridge": "^5.1",
"snc/redis-bundle": "^2.0",
"symfony/apache-pack": "^1.0",
"symfony/asset": "^4.1",
"symfony/console": "^4.1",
"symfony/flex": "^1.10",
"symfony/form": "^4.1",
"symfony/framework-bundle": "^4.1",
"symfony/lts": "^4@dev",
"symfony/monolog-bundle": "^3.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/profiler-pack": "^1.0",
"symfony/security-bundle": "^4.1",
"symfony/security-csrf": "^4.1",
"symfony/swiftmailer-bundle": "^3.2",
"symfony/twig-bundle": "^4.1",
"symfony/validator": "^4.1",
"symfony/web-server-bundle": "^4.1",
"symfony/yaml": "^4.1"
},
"require-dev": {
"behat/behat": "^3.3",
"behat/mink": "^1.7@dev",
"behat/mink-extension": "^2.2",
"behat/mink-goutte-driver": "^1.2",
"behat/symfony2-extension": "^2.1",
"dama/doctrine-test-bundle": "^5.0",
"doctrine/data-fixtures": "^1.2",
"friends-of-behat/context-service-extension": "^1.0",
"friends-of-behat/cross-container-extension": "dev-test-container",
"friends-of-behat/service-container-extension": "^1.0",
"friends-of-behat/symfony-extension": "^2.0",
"friends-of-behat/variadic-extension": "^1.0",
"fzaninotto/faker": "^1.6",
"lchrusciel/api-test-case": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.0",
"phpspec/phpspec": "^4.0",
"phpstan/phpstan": "^0.11.2",
"phpstan/phpstan-doctrine": "^0.11.1",
"phpstan/phpstan-phpunit": "^0.11.0",
"phpstan/phpstan-symfony": "^0.11.1",
"phpunit/phpunit": "^7.2",
"symfony/dotenv": "^4.1",
"symfony/phpunit-bridge": "^4.1",
"webmozart/assert": "^1.2"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/angelov/reco4php"
},
{
"type": "git",
"url": "https://github.com/angelov/CrossContainerExtension"
}
],
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"conflict": {
"symfony/symfony": "*"
}
}