-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.16 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
{
"name": "destructo/pbbg",
"description": "Destructo PBBG is a group of connected components that you can use to get a persistent browser based game off the ground.",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.3",
"squizlabs/php_codesniffer": "^3.5",
"infection/infection": "^0.20.2",
"friendsofphp/php-cs-fixer": "^2.17"
},
"license": "MIT",
"authors": [
{
"name": "Travis Weston",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Destructo\\": "src/",
"DestructoTest\\": "tests/",
"DestructoExamples\\": "examples/"
}
},
"scripts": {
"all-tests": [
"@unit",
"@analyzer",
"@mutation",
"@style:fixer",
"@style"
],
"unit": "vendor/bin/phpunit",
"analyzer": "vendor/bin/psalm",
"mutation": "vendor/bin/infection --min-msi=90 --min-covered-msi=90 --threads=4",
"style": "vendor/bin/phpcs",
"style:fixer": "vendor/bin/php-cs-fixer fix"
}
}