-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
composer.json
51 lines (51 loc) · 1.27 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
{
"name": "xgproyect/xgproyect",
"description": "XGP Open-source OGame Clon",
"keywords": [
"ogame",
"clon"
],
"type": "project",
"homepage": "https://xgproyect.org",
"support": {
"source": "https://github.com/XGProyect/XG-Proyect-v3.x.x",
"issues": "https://github.com/XGProyect/XG-Proyect-v3.x.x/issues"
},
"authors": [
{
"name": "Lucas Kovács",
"homepage": "https://github.com/LucasKovacs",
"role": "Lead"
}
],
"license": "GPL-3.0-only",
"require": {
"php": "^7.4|^8.0",
"phpmailer/phpmailer": "^6.5",
"eftec/bladeone": "^4.2"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"bartlett/php-compatinfo": "6.1"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"autoload": {
"classmap": [
"app/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"phpcompatinfo": [
"vendor/bin/phpcompatinfo --progress analyser:run ./app/"
],
"phpunit": [
"vendor/bin/phpunit --config tests/phpunit.xml --testsuite xgp_application"
]
}
}