-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.56 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
53
54
{
"name": "drdplus/destruction-calculator",
"license": "MIT",
"type": "project",
"description": "Have you broke in or broke a sword?",
"keywords": [
"DrD",
"DrD plus",
"destruction",
"destroy",
"crush",
"calculator"
],
"autoload": {
"psr-4": {
"DrdPlus\\DestructionCalculator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\DrdPlus\\DestructionCalculator\\": "tests/DestructionCalculator",
"Tests\\DrdPlus\\AttackSkeleton\\": "tests/AttackSkeleton",
"Tests\\DrdPlus\\CalculatorSkeleton\\": "vendor/drdplus/calculator-skeleton/tests/CalculatorSkeleton",
"Tests\\DrdPlus\\RulesSkeleton\\": "vendor/drdplus/rules-skeleton/tests/RulesSkeleton",
"Granam\\Tests\\ExceptionsHierarchy\\": "vendor/granam/exceptions-hierarchy/tests/ExceptionsHierarchy"
}
},
"require": {
"php": ">=7.4",
"drdplus/armourer": "^3.0",
"drdplus/attack-skeleton": "^3.0",
"drdplus/calculator-skeleton": "^2.0",
"drdplus/codes": "^2.3",
"drdplus/destruction": "^3.0",
"drdplus/rules-skeleton": "^3.2",
"drdplus/skills": "^3.0"
},
"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.0",
"roave/security-advisories": "dev-latest"
},
"scripts": {
"pre-autoload-dump": [
"rm -f ./tests/AttackSkeleton && ln -s ../vendor/drdplus/attack-skeleton/tests/AttackSkeleton ./tests"
]
},
"config": {
"sort-packages": true
}
}