-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.48 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.48 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
{
"name": "bellangelo/phpstan-migration-rules",
"description": "PHPStan rules for database migration tools (Phinx, Symfony, Laravel)",
"type": "phpstan-extension",
"license": "MIT",
"require": {
"php": "^8.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5|^10.0",
"robmorgan/phinx": "^0.13",
"phpstan/phpstan": "^2.1",
"squizlabs/php_codesniffer": "^4.0",
"rector/rector": "^2.3",
"staabm/annotate-pull-request-from-checkstyle": "^1.8",
"illuminate/database": "^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0"
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse",
"cs": "phpcs",
"cs:fix": "phpcbf",
"rector": "rector process --config rector.php",
"rector:dry-run": "rector process --config rector.php --dry-run",
"rector:downgrade": "rector process --config rector-downgrade.php",
"docker:shell": "docker run --rm --interactive --tty --volume $PWD:/app composer /bin/sh"
},
"autoload": {
"psr-4": {
"PhpStanMigrationRules\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpStanMigrationRules\\Tests\\": "tests/"
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}