forked from greydnls/spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.59 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
{
"name": "bakame/spec",
"description": "Specification in PHP",
"license": "MIT",
"authors": [
{
"name": "Kayla Daniels",
"email": "[email protected]"
},
{
"name": "Ignace Nyamagana Butera",
"email": "[email protected]"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/nyamsprod"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Bakame\\Specification\\": "src/"
},
"exclude-from-classmap": [
"src/**Spec.php"
]
},
"require" : {
"php": "^8.0"
},
"require-dev": {
"friends-of-phpspec/phpspec-code-coverage": "^v6.1.0",
"friendsofphp/php-cs-fixer": "^v3.8.0",
"phpspec/phpspec": "^7.3.0",
"phpstan/phpstan": "^1.9.14",
"phpstan/phpstan-strict-rules": "^1.4.5",
"vimeo/psalm": "^5.1.0"
},
"scripts": {
"phpcs": "php-cs-fixer fix -vvv --diff --dry-run --allow-risky=yes --ansi",
"phpcs:fix": "php-cs-fixer fix -vvv --allow-risky=yes --ansi",
"phpstan": "phpstan analyse -c phpstan.neon --xdebug --ansi",
"psalm": "psalm --show-info=true",
"phpspec": " XDEBUG_MODE=coverage phpspec run",
"test": [
"@phpspec",
"@psalm",
"@phpstan",
"@phpcs:fix"
]
},
"scripts-descriptions": {
"phpcs": "Runs coding style test suite",
"phpstan": "Runs complete codebase static analysis",
"phpspec": "Runs PHP Spec testing",
"test": "Runs the complete test suite"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"sort-packages": true
}
}