This repository has been archived by the owner on Jul 28, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 198
/
composer.json
135 lines (135 loc) · 4.66 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "sonata-project/sandbox",
"description": "Sonata Project's sandbox (with ecommerce bundles)",
"license": "MIT",
"abandoned": true,
"require": {
"php": "^7.4",
"ext-bcmath": "*",
"ext-json": "*",
"ext-simplexml": "*",
"doctrine/annotations": "^1.13.1",
"doctrine/doctrine-bundle": "^2.3.2",
"doctrine/doctrine-fixtures-bundle": "^3.4.0",
"doctrine/doctrine-migrations-bundle": "^3.1.1",
"doctrine/orm": "^2.7.5",
"friendsofsymfony/rest-bundle": "^2.8.6",
"guzzlehttp/guzzle": "^6.5.5",
"jms/serializer-bundle": "^3.9.1",
"michelf/php-markdown": "^1.9.0",
"mopa/bootstrap-bundle": "^3.4.1",
"nelmio/api-doc-bundle": "^2.13.5",
"phpdocumentor/reflection-docblock": "^5.2.2",
"sensio/framework-extra-bundle": "^5.6.1",
"sonata-project/admin-bundle": "^3.100.2",
"sonata-project/block-bundle": "^3.23.1",
"sonata-project/cache-bundle": "^2.4.2",
"sonata-project/classification-bundle": "^3.16.0",
"sonata-project/comment-bundle": "^3.3.1",
"sonata-project/datagrid-bundle": "^3.3.0",
"sonata-project/doctrine-extensions": "^1.12.0",
"sonata-project/doctrine-orm-admin-bundle": "^3.34.2",
"sonata-project/easy-extends-bundle": "^2.5.0",
"sonata-project/ecommerce": "^3.5.2",
"sonata-project/exporter": "^2.6.2",
"sonata-project/form-extensions": "^1.9.0",
"sonata-project/formatter-bundle": "^4.5.0",
"sonata-project/google-authenticator": "^2.3.1",
"sonata-project/intl-bundle": "^2.10.1",
"sonata-project/media-bundle": "^3.31.2",
"sonata-project/news-bundle": "^3.17.0",
"sonata-project/notification-bundle": "^3.12.0",
"sonata-project/page-bundle": "^3.22.2",
"sonata-project/seo-bundle": "^2.13",
"sonata-project/timeline-bundle": "^3.7.0",
"sonata-project/twig-extensions": "^1.6.0",
"sonata-project/user-bundle": "^4.11.1",
"stof/doctrine-extensions-bundle": "^1.6.0",
"symfony-cmf/routing-bundle": "^2.5.0",
"symfony/acl-bundle": "^2.1.0",
"symfony/browser-kit": "^4.4.25",
"symfony/debug": "^4.4.25",
"symfony/debug-bundle": "^4.4.20",
"symfony/dependency-injection": "^4.4.25",
"symfony/flex": "^1.13.3",
"symfony/form": "^4.4.25",
"symfony/http-client": "^4.4.25",
"symfony/http-kernel": "^4.4.25",
"symfony/monolog-bundle": "^3.7.0",
"symfony/property-access": "^4.4.25",
"symfony/property-info": "^4.4.25",
"symfony/security-acl": "^3.1.2",
"symfony/security-bundle": "^4.4.25",
"symfony/security-csrf": "^4.4.25",
"symfony/serializer": "^4.4.25 || ^5.1",
"symfony/translation": "^4.4.25",
"symfony/twig-bundle": "^4.4.25",
"symfony/validator": "^4.4.25",
"twig/extra-bundle": "^3.3.1",
"twig/twig": "^2.14.6",
"willdurand/faker-bundle": "^1.4.1"
},
"replace": {
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "*"
},
"conflict": {
"symfony/symfony": "*"
},
"require-dev": {
"behat/behat": "^3.8.1",
"behat/mink": "^1.8.1",
"behat/mink-browserkit-driver": "^1.3.4",
"behat/mink-extension": "^2.3.1",
"behat/mink-goutte-driver": "^1.2.1",
"behat/mink-selenium2-driver": "^1.4.0",
"phing/phing": "^2.16.4",
"phpstan/phpstan": "^0.12.88",
"symfony/dotenv": "^4.4.25",
"symfony/phpunit-bridge": "^5.3.0",
"symfony/stopwatch": "^4.4.25",
"symfony/web-profiler-bundle": "^4.4.25"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "4.4.*"
}
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Sonata\\Bundle\\": "src/Sonata/Bundle"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"post-create-project-cmd": [
"@auto-scripts",
"php vendor/bin/phing"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}