-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
99 lines (99 loc) · 2.9 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
{
"name": "afup/planete",
"type": "project",
"license": "MIT",
"description": "Code source du site Planète PHP de l'AFUP",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "8.3.*",
"ext-ctype": "*",
"ext-iconv": "*",
"cuyz/valinor-bundle": "^0.3.0",
"phpdocumentor/reflection-docblock": "^5.4.1",
"phpstan/phpdoc-parser": "^1.33.0",
"runtime/frankenphp-symfony": "^0.2.0",
"symfony/asset": "^7.1.6",
"symfony/asset-mapper": "^7.1.8",
"symfony/cache": "^7.1.7",
"symfony/console": "^7.1.8",
"symfony/dotenv": "^7.1.6",
"symfony/flex": "^2",
"symfony/framework-bundle": "^7.1.6",
"symfony/http-client": "^7.1.8",
"symfony/property-access": "^7.1.6",
"symfony/property-info": "^7.1.8",
"symfony/runtime": "^7.1.7",
"symfony/serializer": "^7.1.8",
"symfony/twig-bundle": "^7.1.6",
"symfony/ux-twig-component": "^2.21.0",
"symfony/yaml": "^7.1.6",
"symfonycasts/tailwind-bundle": "^0.6.0",
"twig/extra-bundle": "^3.13.0",
"twig/string-extra": "^3.13.0",
"twig/twig": "^3.14.2"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"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": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"importmap:install": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.0.*",
"docker": true
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64.0",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.7",
"phpstan/phpstan-symfony": "^1.4.11",
"phpunit/phpunit": "^9.6.21",
"symfony/browser-kit": "^7.1.6",
"symfony/css-selector": "^7.1.6",
"symfony/maker-bundle": "^1.61.0",
"symfony/phpunit-bridge": "^7.1.6"
}
}