This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.91 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
{
"name": "palpalani/grumphp-rector-task",
"description": "RectorPhp task runner from GrumPHP",
"keywords": [
"laravel",
"laravel-framework",
"grumphp",
"grumphp-task",
"rectorphp",
"php-library",
"grumphp-rector-task",
"refactoring",
"automated-upgrades",
"instant-upgrades",
"php upgrade",
"laravel upgrade",
"laravel shift"
],
"homepage": "https://github.com/palpalani/grumphp-rector-task",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "palPalani",
"email": "palani.p@gmail.com",
"homepage": "https://github.com/palpalani",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/palpalani/grumphp-rector-task/issues"
},
"autoload": {
"psr-4": {
"palPalani\\GrumPhpRectorTask\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"palPalani\\GrumPhpRectorTask\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.4",
"phpro/grumphp": "^1.13",
"rector/rector": "^0.15"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"orchestra/testbench": "^6.15|^7.0",
"phpunit/phpunit": "^8.4|^9.3",
"laravel/pint": "^1.1",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"nunomaduro/larastan": "^2.1",
"nunomaduro/collision": "^6.2"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"format": "vendor/bin/pint"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
}
}