-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
105 lines (98 loc) · 3.22 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "honeybee/honeybee-agavi-cmf-vendor",
"type": "library",
"description": "Vendor library that is used in the honeybee-agavi-cmf-project.",
"keywords": ["honeybee", "agavi"],
"homepage": "https://github.com/honeybee/honeybee-agavi-cmf-vendor",
"license": "MIT",
"authors": [
{
"name": "Hasham Ahmad",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Steffen Gransow",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Thorsten Schmitt-Rink",
"email": "[email protected]",
"homepage": "https://github.com/shrink0r",
"role": "Developer"
},
{
"name": "Honeybee Contributors",
"homepage": "https://github.com/honeybee/honeybee-agavi-cmf-vendor/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/honeybee/honeybee-agavi-cmf-vendor/issues",
"irc": "irc://irc.freenode.org/honeybee"
},
"autoload": {
"psr-4": {
"Honeygavi\\": "app/lib",
"HoneybeeExtensions\\Composer\\": "etc/composer/"
}
},
"autoload-dev": {
"psr-4": {
"Honeygavi\\Tests\\" : "testing"
}
},
"prefer-stable": true,
"require": {
"php": "^7.2",
"ext-json": "*",
"lib-libxml": "*",
"honeybee/agavi": "1.0.13",
"honeybee/honeybee": "^0.2.24",
"michelf/php-markdown": "^1.9",
"monolog/monolog": "^1.25 || ^2.0",
"mthaml/mthaml": "^1.8",
"symfony/console": "^4.0 || ^5.0",
"symfony/finder": "^4.0 || ^5.0",
"symfony/process": "^4.0 || ^5.0",
"symfony/validator": "^4.0 || ^5.0",
"swiftmailer/swiftmailer": "^5.4",
"twig/twig": "^2.0 || ^3.0",
"twig/intl-extra": "^3.0",
"ql/uri-template": "^1.1"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^7.5",
"phpmd/phpmd": "^2.8",
"squizlabs/php_codesniffer": "^3.5",
"mockery/mockery": "^1.3",
"symfony/css-selector": "^4.0 || ^5.0",
"symfony/dom-crawler": "^4.0 || ^5.0"
},
"scripts": {
"build": [
"@test",
"@code-sniffer",
"@validate-json"
],
"test": "phpunit",
"tests": "phpunit --no-coverage",
"code-sniffer": "phpcs --extensions=php --standard=psr2 app/lib testing",
"code-sniffer-autofix": "phpcbf --standard=psr2 -d tabWidth=4 app/lib testing",
"validate-json": "composer validate --no-check-all --no-check-lock",
"config-build": "bin/cli honeybee.core.util.build_config --recovery",
"validate-deps": "composer validate --with-dependencies --strict",
"css": "bin/cli honeybee.core.util.compile_scss",
"js": "bin/cli honeybee.core.util.compile_js",
"init-standalone": [
"@config-build",
"npm install --global-style",
"cp -r node_modules vendor/",
"@css",
"@js",
"bin/wget_packages",
"bin/cli status"
]
}
}