-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.17 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": "cliffordvickrey/the-gambler",
"description": "Pointless video poker simulator",
"keywords": ["poker"],
"homepage": "http://github.com/slimphp/Slim-Skeleton",
"license": "MIT",
"authors": [
{
"name": "Clifford Vickrey",
"email": "clifforddavidvickrey@gmail.com",
"homepage": "http://www.cliffordvickrey.com/"
}
],
"require": {
"ext-json": "*",
"php": ">=7.3",
"php-di/php-di": "^6.0",
"psr/simple-cache": "^1.0.1",
"slim/psr7": "^0.5",
"slim/slim": "^4.1",
"snipe/banbuilder": "^2.3.0"
},
"require-dev": {
"phpstan/phpstan": "^0.11.16",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Cliffordvickrey\\TheGambler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Cliffordvickrey\\TheGambler\\": "tests/src/"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"analyze": "phpstan analyse",
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
}
}