This repository has been archived by the owner on Jan 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.32 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
{
"name": "bigmichi1/assetmanager",
"description": "An assetmanager module for Laminas Framework 2.",
"license": "BSD-2-Clause",
"type": "library",
"keywords": [
"asset",
"asset manager",
"laminas"
],
"homepage": "https://github.com/BigMichi1/assetmanager",
"authors": [
{
"name": "Wesley Overdijk",
"email": "[email protected]",
"homepage": "http://blog.spoonx.nl/"
},
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://ocramius.github.com/"
},
{
"name": "Michael Cramer",
"email": "[email protected]",
"homepage": "http://www.bigmichi1.de/"
}
],
"require": {
"php": "^7.2",
"assetic/framework": "~2.0.0",
"laminas/laminas-eventmanager": "^3.2.1",
"laminas/laminas-loader": "^2.6.0",
"laminas/laminas-modulemanager": "^2.8.3",
"laminas/laminas-mvc": "^3.1.1",
"laminas/laminas-servicemanager": "^3.3.1",
"laminas/laminas-stdlib": "^3.2.1",
"scssphp/scssphp": "~1.0"
},
"require-dev": {
"laminas/laminas-cache": "^2.8.0",
"laminas/laminas-console": "^2.7.0",
"laminas/laminas-http": "^2.8.0",
"laminas/laminas-view": "^2.10.0",
"phpmd/phpmd": "^2.9",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.49",
"phpstan/phpstan-deprecation-rules": "^0.12.5",
"phpstan/phpstan-strict-rules": "^0.12.5",
"phpunit/phpunit": "^8.5.0",
"squizlabs/php_codesniffer": "^3.3.1"
},
"suggest": {
"ext-mbstring": "ext-mbstring improves the calculation of the response size",
"laminas/laminas-mvc-console": "laminas-mvc-console provides the ability to expose laminas-mvc as a console application"
},
"autoload": {
"psr-0": {
"AssetManager": "src/"
}
},
"autoload-dev": {
"psr-0": {
"AssetManagerTest": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit",
"static-analysis": "vendor/bin/phpstan --memory-limit=0 analyse -c phpstan.neon",
"mess-detector": "vendor/bin/phpmd ./src,./tests/AssetManagerTest text cleancode,unusedcode,codesize,design,naming",
"code-sniffer": "vendor/bin/phpcs --standard=PSR2 ./src ./tests/AssetManagerTest",
"code-sniffer-fix": "vendor/bin/phpcbf --standard=PSR2 ./src ./tests/AssetManagerTest"
}
}