-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
98 lines (98 loc) · 2.93 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
{
"type": "ditt-api",
"require": {
"php": "^7.4",
"ext-iconv": "*",
"api-platform/api-pack": "^1.3",
"guzzlehttp/guzzle": "^7.2",
"html2text/html2text": "^4.3",
"lexik/jwt-authentication-bundle": "^2.11",
"nelmio/cors-bundle": "^2.1",
"sensio/framework-extra-bundle": "^6.1",
"symfony/asset": "^5.2",
"symfony/console": "^5.2",
"symfony/debug-pack": "^1.0",
"symfony/expression-language": "^5.2",
"symfony/filesystem": "^5.2",
"symfony/finder": "^5.2",
"symfony/flex": "^1.12",
"symfony/form": "^5.2",
"symfony/framework-bundle": "^5.2",
"symfony/monolog-bundle": "^3.6",
"symfony/orm-pack": "^2.1",
"symfony/process": "^5.2",
"symfony/proxy-manager-bridge": "^5.2",
"symfony/security-bundle": "^5.2",
"symfony/serializer-pack": "^1.0",
"symfony/swiftmailer-bundle": "^3.5",
"symfony/validator": "^5.2",
"symfony/web-link": "^5.2",
"symfony/yaml": "^5.2",
"welp/ical-bundle": "^1.0"
},
"require-dev": {
"api-platform/schema-generator": "^3.0",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.3",
"codeception/module-db": "^1.1",
"codeception/module-doctrine2": "^1.1",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.2",
"codeception/module-symfony": "^2.0",
"consolidation/robo": "^2.2",
"friendsofphp/php-cs-fixer": "^2.18",
"phpstan/phpstan": "^0.12",
"squizlabs/php_codesniffer": "^3.5",
"symfony/browser-kit": "^4.4",
"symfony/css-selector": "^4.4",
"symfony/dotenv": "^5.2",
"symfony/maker-bundle": "^1.29",
"symfony/phpunit-bridge": "^5.2",
"symfony/profiler-pack": "^1.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"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": "01C8MMKM2KBZD81TKKNAZ5CK3X",
"allow-contrib": false
}
}
}