-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.25 KB
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 1.25 KB
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": "paulemich/card-deck",
"description": "A card deck library with modular shufflers",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Paul Emich"
}
],
"keywords": ["card", "deck", "shuffle", "blackjack", "uno", "cards", "game"],
"require": {
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"pestphp/pest": "^3.0",
"phpstan/phpstan": "^2.0"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"analyse:baseline": "vendor/bin/phpstan analyse --generate-baseline",
"cs": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs:fix": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/pest --no-coverage",
"test-coverage": "vendor/bin/pest --coverage-html coverage"
},
"autoload": {
"psr-4": {
"PaulEmich\\CardDeck\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PaulEmich\\CardDeck\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability" : "stable",
"prefer-stable" : true
}