-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.64 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
55
56
57
58
{
"name": "drdplus/attack-skeleton",
"license": "MIT",
"type": "composer-plugin",
"description": "Configurator skeleton for those using weapons for DrD+",
"keywords": [
"DrD",
"DrD plus",
"weapons",
"attack",
"calculator",
"skeleton"
],
"autoload": {
"psr-4": {
"DrdPlus\\AttackSkeleton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"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",
"composer-plugin-api": "^1.1|^2.0",
"drdplus/armourer": "^3.0",
"drdplus/calculator-skeleton": "^2.0",
"drdplus/codes": "^2.3",
"drdplus/rules-skeleton": "^3.2",
"drdplus/tables": "^3.0",
"granam/integer": "^7.1",
"granam/strict-object": "^3.1"
},
"require-dev": {
"composer/composer": "^1.9|^2.0",
"granam/exceptions-hierarchy": "^5.1",
"granam/test-with-mockery": "^2.0",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^9.0",
"rector/rector": "^0.11.53",
"roave/security-advisories": "dev-latest"
},
"config": {
"sort-packages": true
},
"scripts": {
"pre-autoload-dump": [
"find ./vendor/drdplus/calculator-skeleton/web/*.html -exec cp {} ./web/ \\;"
]
},
"extra": {
"class": "DrdPlus\\AttackSkeleton\\InjectorComposerPlugin\\AttackInjectorComposerPlugin"
}
}