-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.54 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": "thruster/${NAME_CAN}$",
"type": "library",
"description": "Thruster ${NAME}$ ${PROJECT_TYPE}$",
"keywords": [
"${NAME_CAN}$",
"thruster"
],
"homepage": "https://github.com/thrusterio/${NAME_CAN}$",
"license": "MIT",
"authors": [
{
"name": "${AUTHOR}$",
"email": "${EMAIL}$"
}
],
"support": {
"issues": "https://github.com/thrusterio/${NAME_CAN}$",
"source": "https://github.com/thrusterio/${NAME_CAN}$"
},
"require": {
"php": "^7.4||^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "^2",
"infection/infection": "^0"
},
"autoload": {
"psr-4": {
"Thruster\\${NAME}$\\": "src"
},
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"Thruster\\${NAME}$\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html build/html/",
"cs-check": "php-cs-fixer fix --dry-run --diff --diff-format udiff",
"cs-fix": "php-cs-fixer fix",
"test-ci": "phpunit --coverage-text --coverage-clover=coverage.clover",
"test-infection": "infection --min-msi=48 --threads=4 --only-covered",
"ci-run": ["@cs-check", "@test-ci", "@test-infection"]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}