-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
85 lines (85 loc) · 2.32 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
{
"name": "wikisource/wscontest",
"type": "project",
"license": "AGPL-3.0-or-later",
"description": "Web-based tool for scoring Wikisource contests.",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"ext-ctype": "*",
"ext-iconv": "*",
"doctrine/annotations": "^1.10",
"doctrine/doctrine-bundle": "^2.1",
"doctrine/doctrine-migrations-bundle": "^3.0",
"symfony/console": "7.1.*",
"symfony/dotenv": "7.1.*",
"symfony/framework-bundle": "7.1.*",
"symfony/security-csrf": "7.1.*",
"symfony/yaml": "7.1.*",
"twig/extra-bundle": "^2.12 || ^3.0",
"twig/twig": "^2.12 || ^3.0",
"wikimedia/toolforge-bundle": "^1.3",
"wikisource/api": "^2.0"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8.2",
"mediawiki/mediawiki-codesniffer": "^39.0",
"mediawiki/minus-x": "^1.0",
"phan/phan": "^5.0",
"symfony/browser-kit": "7.1.*",
"symfony/css-selector": "7.1.*",
"symfony/phpunit-bridge": "7.1.*",
"symfony/web-profiler-bundle": "7.1.*"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"platform": {
"php": "8.2"
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"post-install-cmd": [
"./bin/console cache:clear"
],
"post-update-cmd": [
"./bin/console cache:clear"
],
"test": [
"composer validate",
"phpcs -s .",
"./bin/console lint:twig ./templates",
"./bin/console lint:yaml ./config",
"minus-x check .",
"phan --allow-polyfill-parser --load-baseline=./.phan/baseline.php",
"./bin/phpunit"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.*"
}
}
}