-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.7 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
{
"name": "gacela-project/phpstan-extension",
"description": "PHPStan rule for projects using Gacela",
"type": "phpstan-extension",
"license": "MIT",
"authors": [
{
"name": "Jose M. Valera Reales",
"email": "[email protected]"
},
{
"name": "Dave Liddament",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"gacela-project/gacela": ">=0.1"
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.6",
"friendsofphp/php-cs-fixer": "^3.62",
"vimeo/psalm": "^5.25",
"symfony/var-dumper": "^5.4",
"psalm/plugin-phpunit": "^0.18"
},
"suggest": {
"gacela-project/gacela": "Gacela helps you build modular PHP applications. It helps normalizing the entry point of a module, without interfering with your domain-business logic."
},
"autoload": {
"psr-4": {
"GacelaProject\\PhpstanExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GacelaProject\\PhpstanExtension\\Tests\\": "tests/"
}
},
"scripts": {
"ctal": [
"@static-clear-cache",
"@csfix",
"@test-all"
],
"test-all": [
"@quality",
"@phpunit"
],
"quality": [
"@csrun",
"@psalm",
"@phpstan"
],
"phpunit": [
"./vendor/bin/phpunit"
],
"static-clear-cache": [
"vendor/bin/psalm --clear-cache",
"vendor/bin/phpstan clear-result-cache"
],
"psalm": "./vendor/bin/psalm",
"phpstan": "./vendor/bin/phpstan analyze",
"csfix": "./vendor/bin/php-cs-fixer fix",
"csrun": "./vendor/bin/php-cs-fixer fix --dry-run"
},
"config": {
"platform": {
"php": "8.0"
},
"sort-packages": true
}
}