-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
127 lines (127 loc) · 3.15 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
{
"name": "eliashaeussler/typo3-badges",
"description": "A Symfony project that provides endpoints for beautiful TYPO3 badges.",
"license": "GPL-3.0-or-later",
"type": "project",
"authors": [
{
"name": "Elias Häußler",
"email": "elias@haeussler.dev",
"homepage": "https://haeussler.dev",
"role": "Maintainer"
}
],
"homepage": "https://typo3-badges.dev",
"require": {
"php": "~8.3.0",
"ext-hash": "*",
"ext-json": "*",
"nyholm/psr7": "^1.4",
"symfony/apache-pack": "^1.0",
"symfony/asset": "~7.1.0",
"symfony/cache": "~7.1.0",
"symfony/cache-contracts": "^3.0",
"symfony/console": "~7.1.0",
"symfony/css-selector": "~7.1.0",
"symfony/dependency-injection": "~7.1.0",
"symfony/dotenv": "~7.1.0",
"symfony/flex": "^2.0",
"symfony/framework-bundle": "~7.1.0",
"symfony/http-client": "~7.1.0",
"symfony/http-client-contracts": "^3.0",
"symfony/http-foundation": "~7.1.0",
"symfony/http-kernel": "~7.1.0",
"symfony/routing": "~7.1.0",
"symfony/runtime": "~7.1.0",
"symfony/service-contracts": "^3.4",
"symfony/web-link": "~7.1.0",
"symfony/web-profiler-bundle": "~7.1.0",
"symfony/webpack-encore-bundle": "^2.0",
"symfony/yaml": "~7.1.0"
},
"require-dev": {
"eliashaeussler/php-cs-fixer-config": "^2.0",
"eliashaeussler/phpstan-config": "^2.0",
"eliashaeussler/rector-config": "^3.0",
"eliashaeussler/version-bumper": "^1.2",
"ergebnis/composer-normalize": "^2.21",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^11.0",
"symfony/browser-kit": "~7.1.0",
"symfony/phpunit-bridge": "~7.1.0"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*"
},
"conflict": {
"symfony/symfony": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"eliashaeussler/version-bumper": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "~7.0.0"
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"auto-scripts": {
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"cache:clear --no-optional-warmers": "symfony-cmd"
},
"fix": [
"@fix:composer",
"@fix:php"
],
"fix:composer": "@composer normalize",
"fix:php": "php-cs-fixer fix",
"lint": [
"@lint:composer",
"@lint:php"
],
"lint:composer": "@fix:composer --dry-run",
"lint:php": "@fix:php --dry-run",
"migration": "rector process",
"sca": "phpstan analyse -c phpstan.php",
"test": "@test:coverage --no-coverage",
"test:coverage": "phpunit -c phpunit.xml"
}
}