-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.24 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
{
"name": "gabbanaesteban/mastermind",
"description": "Mastermind game implementation in PHP",
"keywords": [
"mastermind",
"game"
],
"license": "MIT",
"authors": [
{
"name": "Esteban De la Rosa",
"email": "[email protected]",
"homepage": "https://estebandelarosa.dev",
"role": "Software Engineer"
}
],
"require": {
"php": "^7.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"pestphp/pest": "^1.0",
"phpstan/phpstan": "^0.12.70"
},
"autoload": {
"psr-4": {
"Gabbanaesteban\\Mastermind\\": "src/"
}
},
"scripts": {
"lint": "./vendor/bin/php-cs-fixer fix -v",
"test:lint": "./vendor/bin/php-cs-fixer fix -v --dry-run",
"test:types": "./vendor/bin/phpstan analyse src --ansi --memory-limit=0 --level=5",
"test:features": "./vendor/bin/pest --colors=always",
"test:coverage": "./vendor/bin/pest --coverage --min=90",
"test": [
"@test:lint",
"@test:types",
"@test:features"
]
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}