-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
117 lines (117 loc) · 3.35 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
{
"name": "adrien-chinour/blog",
"description": "Blog system for udfn.fr",
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-intl": "*",
"league/commonmark": "2.4.*",
"meilisearch/meilisearch-php": "^1.10",
"nyholm/psr7": "^1.0",
"runtime/frankenphp-symfony": "^0.2.0",
"symfony/config": "7.1.*",
"symfony/console": "7.1.*",
"symfony/dotenv": "7.1.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "7.1.*",
"symfony/http-client": "7.1.*",
"symfony/lock": "7.1.*",
"symfony/messenger": "7.1.*",
"symfony/property-access": "7.1.*",
"symfony/rate-limiter": "7.1.*",
"symfony/runtime": "7.1.*",
"symfony/security-bundle": "7.1.*",
"symfony/serializer": "7.1.*",
"symfony/twig-bundle": "7.1.*",
"symfony/web-link": "7.1.*",
"symfony/webhook": "7.1.*",
"symfony/yaml": "7.1.*",
"tempest/highlight": "^2.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"cyclonedx/cyclonedx-php-composer": "^5.2",
"dg/bypass-finals": "^1.8",
"fakerphp/faker": "^1.23",
"mockery/mockery": "^1.6",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "7.1.*",
"symfony/css-selector": "7.1.*",
"symfony/phpunit-bridge": "^7.1",
"symfony/stopwatch": "7.1.*",
"symfony/web-profiler-bundle": "7.1.*",
"symplify/easy-coding-standard": "^12.0",
"symplify/phpstan-rules": "^13.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
"phpstan/extension-installer": true,
"cyclonedx/cyclonedx-php-composer": 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": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"quality": [
"composer validate --strict",
"vendor/bin/phpstan analyse",
"vendor/bin/ecs check"
],
"test": [
"bin/phpunit"
],
"test-unit": [
"bin/phpunit --testsuite Unit"
],
"test-integration": [
"bin/phpunit --testsuite Integration"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.1.*"
}
}
}