forked from cakephp/upgrade
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
53 lines (53 loc) · 1.37 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
{
"name": "dereuromark/upgrade",
"type": "library",
"description": "Command line tool for updating CakePHP applications and plugins.",
"homepage": "https://cakephp.org",
"license": "MIT",
"require": {
"ext-json": "*",
"php": "^8.1",
"sebastian/diff": "^5.0.3",
"cakephp/cakephp": "5.x-dev as 5.1.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"fig-r/psr2r-sniffer": "dev-master",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Upgrade\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Upgrade\\Test\\": "tests/"
}
},
"prefer-stable": true,
"scripts": {
"stan": "phpstan analyze",
"cs-check": "phpcs --extensions=php",
"cs-fix": "phpcbf --extensions=php",
"test": "phpunit",
"test-coverage": "phpunit --log-junit webroot/coverage/unitreport.xml --coverage-html webroot/coverage --coverage-clover webroot/coverage/coverage.xml"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"rector/extension-installer": true
}
},
"extra": {
"rector": {
"includes": [
"config/rector/config.php"
]
}
},
"support": {
"source": "https://github.com/dereuromark/upgrade"
}
}