-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
106 lines (106 loc) · 3.22 KB
/
composer.json
File metadata and controls
106 lines (106 loc) · 3.22 KB
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
{
"name": "antonshell/placeholder-service",
"description": "There is a self hosted service for images placeholders generation",
"type": "project",
"license": "BSD-3-Clause",
"require": {
"php": ">=8.2.0",
"ext-ctype": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-json": "*",
"sapientpro/image-comparator": "^1.0",
"symfony/console": "7.4.*",
"symfony/dependency-injection": "7.4.*",
"symfony/dotenv": "7.4.*",
"symfony/error-handler": "7.4.*",
"symfony/flex": "^2.0",
"symfony/framework-bundle": "7.4.*",
"symfony/http-foundation": "7.4.*",
"symfony/http-kernel": "7.4.*",
"symfony/mime": "7.4.*",
"symfony/routing": "7.4.*",
"symfony/yaml": "7.4.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"jaschilz/php-coverage-badger": "^2.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"roave/psalm-html-output": "^1.0",
"symfony/browser-kit": "7.4.*",
"symfony/css-selector": "7.4.*",
"symfony/phpunit-bridge": "^7.4",
"symfony/requirements-checker": "^2.0",
"vimeo/psalm": "^5.6"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"requirements-checker": "script"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"test": [
"php -d memory_limit=2048M vendor/bin/phpunit --coverage-html coverage --coverage-clover coverage.xml"
],
"cs-fixer": [
"vendor/bin/php-cs-fixer fix --allow-risky=yes --using-cache=no --config .php-cs-fixer.dist.php"
],
"psalm": [
"vendor/bin/psalm --report=checkstyle.xml"
],
"psalm-report-html": [
"vendor/bin/psalm --output-format=xml | xsltproc vendor/roave/psalm-html-output/psalm-html-output.xsl - > psalm-report.html"
],
"update-badges": [
"vendor/bin/php-coverage-badger coverage.xml .github/badges/coverage.svg"
],
"require-checker": [
"php composer-require-checker.phar check --config-file=composer-require-checker.json composer.json"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.4.*"
}
}
}