-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (53 loc) · 1.35 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
{
"name": "ngyuki/phpower",
"description": "Implement assertion like Power Assert in PHP.",
"type": "library",
"keywords": [ "testing", "assertion" ],
"homepage": "https://github.com/ngyuki/phpower",
"license": "MIT",
"authors": [
{ "name": "Toshiyuki Goto", "email": "ngyuki.jp@gmail.com" }
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": "^7.4|^8.0|^8.1",
"ext-json": "*",
"microsoft/tolerant-php-parser": "^0.1",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.3.7|^6.0"
},
"autoload": {
"psr-4": {
"ngyuki\\Phpower\\": "src/"
},
"files": [
"src/autoload.php"
]
},
"scripts": {
"test": [
"@php vendor/bin/phpunit --colors=always"
],
"coverage": [
"@php vendor/bin/phpunit --colors=always --coverage-html coverage"
],
"cs": [
"php-cs-fixer fix --dry-run --diff --ansi -v"
],
"fix": [
"php-cs-fixer fix --diff --ansi -v"
],
"phan": [
"phan -p --color"
],
"qa": [
"@composer cs",
"@composer phan",
"@composer test"
]
}
}