-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 891 Bytes
/
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
{
"name": "xxxx/xxxx",
"description": "xxxx",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "xxxx",
"email": "xxxx@example.com"
}
],
"keywords": ["xxxx"],
"require": {
"php": "^8.1"
},
"autoload": {
"psr-4": {
"Xxxx\\Xxxx\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xxxx\\Xxxx\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests/ --testdox",
"stan": "vendor/bin/phpstan analyse --level=9 --memory-limit=2G src tests",
"lint": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix --dry-run",
"lint:fix": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.9",
"yumemi-inc/php-cs-fixer-config": "^8.1"
}
}