-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 979 Bytes
/
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
{
"name": "steapnets/sea-battle",
"license": [
"MIT"
],
"description": "Sea Battle game for code review project",
"authors": [
{
"name": "Pavel Stepanets",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"elegant-bro/interfaces": "^1.1"
},
"require-dev": {
"ext-simplexml": "*",
"php-coveralls/php-coveralls": "^2.2",
"phpunit/phpunit": "^5.7 || ^6.4 || ^7.0",
"roave/security-advisories": "dev-master",
"symfony/cache": "^4.4",
"symfony/http-foundation": "^4.4",
"symfony/mime": "^4.4",
"symplify/easy-coding-standard": "^6.0"
},
"autoload": {
"psr-4": {
"Stepanets\\SeaBattle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Stepanets\\SeaBattle\\Tests\\": "tests"
}
},
"config": {
"platform": {
"php": "7.4"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"optimize-autoloader": true
}
}