-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.36 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.36 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
52
53
54
55
56
57
58
{
"name": "drdplus/index",
"license": "MIT",
"type": "page",
"description": "List of Drd+ rules and related sites",
"keywords": [
"Drd plus",
"rules",
"sites",
"czech",
"slovak",
"RPG",
"roleplaying"
],
"autoload": {
"psr-4": {
"DrdPlus\\Index\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DrdPlus\\Tests\\Index\\": "tests/Index",
"Tests\\DrdPlus\\RulesSkeleton\\": "vendor/drdplus/rules-skeleton/tests/RulesSkeleton",
"Granam\\Tests\\ExceptionsHierarchy\\": "vendor/granam/exceptions-hierarchy/tests/ExceptionsHierarchy"
}
},
"repositories": [
{
"type": "github",
"url": "https://github.com/gamecon-cz/gamecon"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"drdplus/rules-skeleton": "^3.2"
},
"require-dev": {
"composer/composer": "^1.8|^2.0",
"granam/exceptions-hierarchy": "^5.0",
"granam/test-with-mockery": "^2.0",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "^9.3",
"roave/security-advisories": "dev-latest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"granam/web-content-builder": true,
"drdplus/rules-skeleton": true
}
},
"scripts": {
"pre-autoload-dump": [
"rm -f tests/RulesSkeleton && ln -s ../vendor/drdplus/rules-skeleton/tests/RulesSkeleton tests/"
]
}
}