-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.44 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
59
60
61
62
63
64
{
"name": "drdplus/rules-skeleton",
"license": "MIT",
"type": "composer-plugin",
"description": "Skeleton for DrD+ rules as HTML",
"keywords": [
"drd plus",
"rules",
"helper",
"skeleton"
],
"autoload": {
"psr-4": {
"DrdPlus\\": "DrdPlus/"
}
},
"bin": [
"bin/fix_web_permissions.sh"
],
"require": {
"php": ">=7.1",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-posix": "*",
"ext-yaml": "*",
"ext-zlib": "*",
"composer-plugin-api": "^1.0",
"drdplus/web-versions": "^1.0",
"erusev/parsedown": "^1.7",
"granam/exceptions-hierarchy": "^4.0",
"granam/git": "^1.2",
"granam/strict-object": "^3.0",
"granam/string": "^3.2",
"granam/tools": "^3.0",
"granam/web-content-builder": "1.0.*",
"granam/yaml-reader": "^1.0",
"phpgt/dom": "~1.1",
"phpmailer/phpmailer": "^6.0",
"piwik/device-detector": "^3.11",
"tracy/tracy": "^2.4"
},
"require-dev": {
"composer/composer": "^1.8",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.5",
"roave/security-advisories": "dev-master"
},
"config": {
"sort-packages": true
},
"extra": {
"class": "DrdPlus\\RulesSkeleton\\SkeletonInjectorComposerPlugin"
},
"scripts": {
"post-update-cmd": [
"php vendor/bin/assets --css --dir=css"
],
"post-install-cmd": [
"php vendor/bin/assets --css --dir=css"
]
}
}