-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
56 lines (50 loc) · 1.23 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
{
"name": "xthiago/php-skeleton",
"description": "A skeleton to start new high-quality PHP projects without worrying about bootstrapping everything from scratch.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Thiago Rodrigues",
"email": "[email protected]",
"homepage": "https://xthiago.com",
"role": "Developer"
}
],
"minimum-stability" : "stable",
"autoload": {
"psr-4": {
"Xthiago\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"Xthiago\\": [
"tests/"
]
}
},
"require-dev": {
"phpunit/phpunit": "^9.1.4",
"doctrine/coding-standard": "^7.0.2",
"phpstan/phpstan": "^0.12.22",
"phpstan/phpstan-phpunit": "^0.12.8",
"php-parallel-lint/php-parallel-lint": "^1.2.0"
},
"require": {
"php": ">=7.4"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpcs",
"phpstan analyse",
"phpunit"
],
"coverage": [
"phpunit --coverage-html reports/"
]
}
}