-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.42 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
{
"name": "gsteel/php-template-project",
"type": "library",
"description": "Template Project Name",
"keywords": [],
"homepage": "https://github.com/gsteel/php-template-project",
"license": "MIT",
"authors": [
{
"name": "George Steel",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ~8.0"
},
"require-dev": {
"doctrine/coding-standard": "^9.0",
"ergebnis/composer-normalize": "^2.15",
"infection/infection": "^0.18.2",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^4.8"
},
"config": {
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
},
"autoload": {
"psr-4": {
"Gsteel\\Package\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gsteel\\Package\\Test\\Unit\\": "test/Unit",
"Gsteel\\Package\\Test\\Integration\\": "test/Integration"
}
},
"scripts": {
"check": [
"phpcs",
"psalm",
"phpunit",
"infection"
],
"clean": [
"composer normalize",
"psalm --generate-baseline",
"phpcbf"
]
}
}