-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (74 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "gam/estafeta-command",
"description": "PHP library to run 'estafeta interactive command' web portal operations programmatically.",
"license": "Apache-2.0",
"type": "library",
"keywords": [
"estafeta",
"comando",
"guias"
],
"authors": [
{
"name": "Jose Antonio",
"email": "[email protected]",
"homepage": "https://gamboa-gam.com"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"myclabs/php-enum": "^1.8",
"nette/schema": "^1.2",
"symfony/browser-kit": "^6.0",
"symfony/http-client": "^6.0",
"symfony/mime": "^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-master",
"timeweb/phpstan-enum": "^3.0"
},
"autoload": {
"psr-4": {
"Gam\\Estafeta\\Command\\": "src/main"
}
},
"autoload-dev": {
"psr-4": {
"Gam\\Estafeta\\Command\\Test\\": "src/test"
}
},
"scripts": {
"dev:all": [
"@dev:code-style",
"@dev:analyse",
"@dev:test",
"@dev:security"
],
"dev:code": [
"@dev:code-style",
"@dev:analyse",
"@dev:security"
],
"dev:analyse": "vendor/bin/phpstan analyse --ansi --no-progress",
"dev:code-style": "vendor/bin/php-cs-fixer fix --ansi --dry-run --diff",
"dev:fix-style": "vendor/bin/php-cs-fixer fix --verbose",
"dev:security": "@composer update --no-suggest --no-interaction --dry-run roave/security-advisories",
"dev:test": "vendor/bin/phpunit --colors=always"
},
"scripts-descriptions": {
"dev:code": "Perform checks at once: code-style, static code analysis & security.",
"dev:all": "Perform all the checks at once: code-style, static code analysis, unit tests and security.",
"dev:analyse": "Static code analysis via PHPStan",
"dev:code-style": "Check the code style.",
"dev:fix-style": "Fix the code style.",
"dev:security": "Manual dependencies security check via roave/security-advisories.",
"dev:test": "Run all unit tests."
},
"config": {
"sort-packages": true
}
}