-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·121 lines (121 loc) · 3.45 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
{
"name": "aoepeople/meals",
"license": "MIT",
"type": "project",
"description": "",
"autoload": {
"psr-4": {
"App\\": [
"src/",
"src/Mealz/MealBundle/"
]
}
},
"require": {
"php": ">=8.3",
"ext-bcmath": "*",
"ext-calendar": "*",
"ext-json": "*",
"ext-pdo": "*",
"doctrine/dbal": "^3",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^2.19",
"friendsofphp/proxy-manager-lts": "^1.0.2",
"hwi/oauth-bundle": "^2.2.0",
"lcobucci/jwt": "^5.3",
"paypal/paypal-checkout-sdk": "^1.0.0",
"pentatrion/vite-bundle": "^6.4",
"psr/cache": "^3.0.0",
"psr/container": "^1.0",
"psr/link": "^1.0",
"psr/log": "^1|^2",
"stof/doctrine-extensions-bundle": "^1.6",
"symfony/asset": "^6.4",
"symfony/config": "^6.4",
"symfony/console": "^6.4",
"symfony/contracts": "^3.5.0",
"symfony/dependency-injection": "^6.4",
"symfony/dotenv": "^6.4",
"symfony/expression-language": "^6.4",
"symfony/flex": "^1.18",
"symfony/form": "^6.4",
"symfony/http-client": "^6.4",
"symfony/http-foundation": "^6.4",
"symfony/intl": "^6.4",
"symfony/mailer": "^5.3",
"symfony/mercure-bundle": "^0.3.4",
"symfony/mime": "^6.4.7",
"symfony/monolog-bundle": "^3.8",
"symfony/polyfill-ctype": "~1.8",
"symfony/polyfill-intl-grapheme": "^1.23",
"symfony/polyfill-intl-icu": "~1.0",
"symfony/polyfill-intl-idn": "^1.10",
"symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-php72": "~1.5",
"symfony/polyfill-php73": "^1.11",
"symfony/polyfill-php80": "^1.16",
"symfony/polyfill-php81": "^1.22",
"symfony/property-access": "^6.4",
"symfony/property-info": "^6.4",
"symfony/proxy-manager-bridge": "^6.4",
"symfony/routing": "^6.4",
"symfony/runtime": "^6.4",
"symfony/security-csrf": "^6.4",
"symfony/translation": "^6.4",
"symfony/twig-bridge": "^6.4",
"symfony/twig-bundle": "^6.4",
"symfony/validator": "^6.4",
"symfony/var-exporter": "^6.2",
"symfony/yaml": "^6.4",
"twig/twig": "^v3.9.3"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8.0",
"doctrine/doctrine-fixtures-bundle": "^3.6",
"friendsofphp/php-cs-fixer": "^3.3",
"phploc/phploc": "^7.0",
"phpmd/phpmd": "~2.2",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-symfony": "^5.1",
"squizlabs/php_codesniffer": "2.8.1",
"symfony/apache-pack": "^1.0",
"symfony/browser-kit": "^6.4",
"symfony/css-selector": "^6.4",
"symfony/debug-bundle": "^6.4",
"symfony/stopwatch": "^6.4",
"symfony/var-dumper": "^6.4",
"symfony/web-profiler-bundle": "^6.4",
"vimeo/psalm": "^5.24",
"weirdan/doctrine-psalm-plugin": "^2.9"
},
"conflict": {
"symfony/symfony": "*"
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"tests": [
"mkdir -p build/artifacts/qa/",
"vendor/bin/phpunit -d memory_limit=-1 -c tests/phpunit.xml.dist"
],
"php-cs-fixer": "vendor/bin/php-cs-fixer --config=./.php_cs-fixer.dist"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"php-http/discovery": true,
"symfony/runtime": true
}
}
}