-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.11 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
{
"name": "enjoys/assets-collector",
"description": "Assets Collector CSS and JS",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Enjoys",
"email": "deadly.info@gmail.com"
}
],
"require": {
"php": "^7.4 | ^8.0",
"symfony/polyfill-php80": "^1.0",
"tubalmartin/cssmin": "^4.1",
"tedivm/jshrink": "^1.6.2 | ~1.5.0",
"psr/log": "^1.0 | ^2.0 | ^3.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"enjoys/url-converter": "*",
"enjoys/functions": "^2.3"
},
"autoload": {
"psr-4": {
"Enjoys\\AssetsCollector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Enjoys\\AssetsCollector\\": "tests/"
}
},
"require-dev": {
"symfony/var-dumper": "^5.4 | ^6.0",
"phpunit/phpunit": "^9.5",
"twig/twig": "^3.2",
"vimeo/psalm": "^4.8",
"guzzlehttp/guzzle": "^7.2"
},
"scripts": {
"psalm": "psalm --show-info=true --config=psalm.xml --no-cache"
}
}