-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.41 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
{
"name": "hopeseekr/prisoners-dilemma",
"description": "Use genetic algorithm .",
"keywords": [
"prisoner's dilemma",
"genetic algorithm",
"machine learning",
"thought experiment"
],
"homepage": "https://github.com/hopeseekr/PrisonersDilemma/",
"license": "MIT",
"authors": [
{
"name": "PHP Experts, Inc.",
"homepage": "https://www.phpexperts.pro/"
},
{
"name": "Theodore R. Smith",
"homepage": "https://www.linkedin.com/in/tedrsmith"
}
],
"require": {
"php": "^7.4",
"ext-json": "*",
"laravel-zero/framework": "^7.0",
"phpexperts/console-painter": "^1.0",
"phpexperts/php-evolver": "^1.0",
"phpexperts/simple-dto": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "8.*|9.*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "*",
"symfony/var-dumper": "*",
"squizlabs/php_codesniffer": "*",
"phpexperts/docker-phan": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"HopeSeekr\\PrisonersDilemma\\" : "src/"
}
},
"autoload-dev": {
"psr-4": { "HopeSeekr\\PrisonersDilemma\\Tests\\" : "tests/" }
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true
},
"bin": ["dilemma"]
}