forked from widmogrod/zf2-assetic-module
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
86 lines (86 loc) · 2.71 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
{
"name": "fabiang/assetic-module",
"type": "library",
"description": "Zend Framework/Laminas module that provides complete integration of Assetic library",
"keywords": [
"assetic",
"assets",
"resources",
"css",
"js",
"less"
],
"homepage": "https://github.com/fabiang/assetic-module",
"license": "MIT",
"authors": [
{
"name": "Gabriel Habryn",
"email": "widmogrod@gmail.com",
"homepage": "https://github.com/widmogrod/zf2-assetic-module",
"role": "Developer"
},
{
"name": "Fabian Grutschus",
"email": "f.grutschus@lubyte.de",
"role": "Developer"
}
],
"bin": [
"bin/assetic"
],
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"assetic/framework": "^3.0",
"laminas/laminas-view": "^2.12",
"symfony/console": "^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"laminas/laminas-diactoros": ">=2.10",
"laminas/laminas-mvc": ">=3.3",
"mezzio/mezzio": ">=3.10",
"mezzio/mezzio-helpers": ">=5.8",
"mezzio/mezzio-router": ">=3.8",
"phpspec/prophecy-phpunit": ">=2.3",
"phpunit/phpunit": ">=9.5.28",
"psr/http-server-middleware": "^1.0",
"vimeo/psalm": "*",
"scrutinizer/ocular": "dev-master",
"squizlabs/php_codesniffer": "*",
"slevomat/coding-standard": "*",
"laminas/laminas-coding-standard": "*",
"phpspec/prophecy": ">=1.20",
"webmozart/assert": "*"
},
"suggest": {
"laminas/laminas-mvc": "When using this module together with Laminas MVC",
"mezzio/mezzio": "When using this module together with Mezzio",
"mezzio/mezzio-helpers": "When using this module together with Mezzio",
"mezzio/mezzio-router": "When using this module together with Mezzio",
"psr/http-server-middleware": "When using this module together with Mezzio",
"leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
"leafo/scssphp": "Assetic provides the integration with the scssphp SCSS compiler"
},
"autoload": {
"psr-4": {
"Fabiang\\AsseticBundle\\": "src/"
}
},
"replace": {
"widmogrod/zf2-assetic-module": "self.version"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": "phpcs",
"psalm": "psalm",
"phpunit": "phpunit",
"test": [
"@psalm",
"@phpcs",
"@phpunit"
]
}
}