-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
86 lines (86 loc) · 2.48 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "gacela-project/container",
"type": "library",
"description": "A minimalistic container dependency resolver",
"license": "MIT",
"homepage": "https://gacela-project.com",
"keywords": [
"php",
"gacela",
"resolver",
"container"
],
"authors": [
{
"name": "Jose Maria Valera Reales",
"email": "chemaclass@outlook.es",
"homepage": "https://chemaclass.com"
},
{
"name": "Jesus Valera Reales",
"email": "jesus1902@outlook.com",
"homepage": "https://jesusvalerareales.com/"
}
],
"support": {
"issues": "https://github.com/gacela-project/resolver/issues"
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=8.1",
"psr/container": ">=1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.11",
"psalm/plugin-phpunit": "^0.18",
"symfony/var-dumper": "^5.4",
"vimeo/psalm": "^5.25"
},
"autoload": {
"psr-4": {
"Gacela\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GacelaTest\\": "tests/"
}
},
"scripts": {
"post-install-cmd": ".github/git-hooks/init.sh",
"ctal": [
"@static-clear-cache",
"@csfix",
"@test-all"
],
"test": "@test-all",
"test-all": [
"@quality",
"@phpunit"
],
"quality": ["@csrun", "@psalm", "@phpstan"],
"phpunit": ["@test-phpunit"],
"static-clear-cache": [
"XDEBUG_MODE=off vendor/bin/psalm --clear-cache",
"XDEBUG_MODE=off vendor/bin/phpstan clear-result-cache"
],
"test-phpunit": "XDEBUG_MODE=off ./vendor/bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --testsuite=unit,feature --coverage-html=data/coverage-html",
"psalm": "XDEBUG_MODE=off ./vendor/bin/psalm",
"phpstan": "XDEBUG_MODE=off ./vendor/bin/phpstan analyze",
"fix": "@csfix",
"csfix": "XDEBUG_MODE=off ./vendor/bin/php-cs-fixer fix",
"csrun": "XDEBUG_MODE=off ./vendor/bin/php-cs-fixer fix --dry-run"
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}