-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
114 lines (114 loc) · 3.53 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
{
"type": "project",
"license": "proprietary",
"require": {
"php": "^8.3",
"ext-iconv": "*",
"ext-json": "*",
"ext-simplexml": "*",
"composer-plugin-api": "^2.2",
"calderacc/geobasic": "^0.5",
"doctrine/doctrine-bundle": "^2.6",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "^3.2.0",
"flagception/flagception-bundle": "^4.1",
"fresh/doctrine-enum-bundle": "^10.0.0",
"friendsofsymfony/jsrouting-bundle": "^3.0",
"geocoder-php/nominatim-provider": "^5.2",
"http-interop/http-factory-guzzle": "*",
"jsor/doctrine-postgis": "^2.1",
"league/geotools": "^1.0",
"luft-jetzt/luft-model": "^0.5.1",
"maltehuebner/impress-bundle": "dev-main",
"mhujer/breadcrumbs-bundle": "^1.5",
"nelmio/api-doc-bundle": "^4.0",
"nesbot/carbon": "^2.7",
"php-http/guzzle6-adapter": "^2.0.2",
"php-http/httplug-bundle": "^1.20.0",
"php-http/message": "^1.7",
"phpdocumentor/reflection-docblock": "^5.3",
"phpstan/phpdoc-parser": "^1.2",
"predis/predis": "^1.1",
"presta/sitemap-bundle": "^4.0",
"sonata-project/seo-bundle": "^3.0",
"symfony/amqp-messenger": "^7.1",
"symfony/apache-pack": "^1.0",
"symfony/dotenv": "^7.1",
"symfony/flex": "^2.0",
"symfony/framework-bundle": "^7.1",
"symfony/messenger": "^7.1",
"symfony/monolog-bundle": "^3.0",
"symfony/process": "^7.1",
"symfony/property-access": "^7.1",
"symfony/proxy-manager-bridge": "^6.4",
"symfony/runtime": "^7.1",
"symfony/serializer": "^7.1",
"symfony/string": "^7.1",
"symfony/twig-bridge": "^7.1",
"symfony/webpack-encore-bundle": "^2.0",
"symfony/yaml": "^7.1",
"twig/extra-bundle": "^2.12|^3.0",
"willdurand/geocoder-bundle": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"rector/rector": "^1.2",
"symfony/browser-kit": "^7.1",
"symfony/css-selector": "^7.1",
"symfony/debug-bundle": "^7.1",
"symfony/maker-bundle": "^1.0",
"symfony/phpunit-bridge": "^4.3",
"symfony/web-profiler-bundle": "^7.1"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"composer/installers": true,
"symfony/flex": true,
"symfony/runtime": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"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"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"id": "01C7ZY80BTZQAPGP49Y9QDWY3E",
"allow-contrib": false
}
}
}