-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.92 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
{
"name": "wayofdev/package-tpl",
"description": "PHP package template with GitHub Actions",
"type": "library",
"license": "MIT",
"homepage": "https://wayof.dev",
"support": {
"issues": "https://github.com/wayofdev/php-package-tpl/issues",
"source": "https://github.com/wayofdev/php-package-tpl"
},
"authors": [
{
"name": "lotyp",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.30.2",
"pestphp/pest": "^2.4.0",
"jetbrains/phpstorm-attributes": "^1.0",
"phpstan/extension-installer": "^1.2.0",
"phpstan/phpstan": "^1.10.11",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"phpstan/phpstan-phpunit": "^1.3.11",
"phpstan/phpstan-strict-rules": "^1.5.1",
"phpunit/phpunit": "^10.0.19",
"roave/security-advisories": "dev-latest",
"wayofdev/cs-fixer-config": "^v1.1.11"
},
"autoload": {
"psr-4": {
"WayOfDev\\Package\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WayOfDev\\Package\\Tests\\": "tests/"
}
},
"scripts": {
"cs-fix": "php vendor/bin/php-cs-fixer fix -v",
"cs-diff": "php vendor/bin/php-cs-fixer fix --dry-run -v --diff",
"test": "php vendor/bin/pest",
"test-cc": "php vendor/bin/pest --coverage",
"stan": "php vendor/bin/phpstan analyse",
"stan-ci": "php vendor/bin/phpstan analyse --error-format=github"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
}
}