forked from PHPExpertsInc/php-evolver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (50 loc) · 1.22 KB
/
composer.json
File metadata and controls
51 lines (50 loc) · 1.22 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
47
48
49
50
51
{
"name": "phpexperts/php-evolver",
"description": "A generic PHP Genetic Algorithm Framework.",
"keywords": [
"GA",
"Genetic Algorithm Framework",
"AI",
"Artifical Intelligence"
],
"homepage": "https://github.com/phpexpertsinc/php-evolver",
"license": "MIT",
"authors": [
{
"name": "Peter Coles",
"email": "peterdcoles@gmail.com",
"homepage": "https://petercoles.com",
"role": "Creator"
},
{
"name": "Theodore R. Smith",
"email": "theodore@phpexperts.pro",
"homepage": "https://www.phpexperts.pro/",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"tightenco/collect": "^5.6"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"PHPExperts\\GAO\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPExperts\\GAO\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}