-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
45 lines (45 loc) · 1.18 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
{
"name": "contao/contao-rector",
"description": "Rector upgrades rules for Contao CMS",
"license": "LGPL-3.0-or-later",
"type": "rector-extension",
"homepage": "https://contao.org",
"support": {
"issues": "https://github.com/contao/contao-rector/issues",
"forum": "https://community.contao.org",
"source": "https://github.com/contao/contao-rector",
"docs": "https://docs.contao.org"
},
"funding": [
{
"type": "other",
"url": "https://to.contao.org/donate"
}
],
"require": {
"php": "^8.1",
"rector/rector": "^0.19 || ^1.0",
"phpstan/phpstan": "^1.0",
"webmozart/assert": "^1.7"
},
"require-dev": {
"contao/core-bundle": "^4.4 || ^5.0",
"phpunit/phpunit": "^10.0",
"symplify/rule-doc-generator": "^12.2"
},
"autoload": {
"psr-4": {
"Contao\\Rector\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Contao\\Rector\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}