-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.6 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.6 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
{
"name": "interweberde/cakephp-webpack-asset-loader",
"description": "Webpack Asset handling plugin for CakePHP. It takes an exported manifest.json file and then automatically loads all assets for an specified entry point.",
"type": "cakephp-plugin",
"license": "MIT",
"homepage": "https://github.com/interweberde/cakephp-webpack-asset-loader",
"authors": [
{
"name": "Daniel Melchior @ Interweber",
"homepage": "https://github.com/interweberde",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/interweber/cakephp-webpack-asset-loader/issues",
"source": "https://github.com/interweber/cakephp-webpack-asset-loader"
},
"require-dev": {
"cakephp/cakephp": "^3.6",
"phpstan/phpstan": "^0.11.15",
"squizlabs/php_codesniffer": "^3.4",
"interweberde/interweber-cs": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.1",
"sirbrillig/phpcs-variable-analysis": "^2.7",
"ext-dom": "*"
},
"autoload": {
"psr-4": {
"Interweberde\\WebpackAssetLoader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Interweberde\\WebpackAssetLoader\\Test\\": "tests/"
}
},
"scripts": {
"lint": "phpstan analyse --level 7 src/ tests/",
"cs-check": "phpcs src/ tests/",
"cs-fix": "phpcbf src/ tests/"
},
"require": {
"php": "^7.3",
"ext-json": "*",
"ext-dom": "*",
"sebastian/diff": "1.4.3",
"phpunit/phpunit": "6.2.4"
}
}