-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 945 Bytes
/
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
{
"name": "enginiro/asset-bundle",
"description": "Symfony bundle providing a hash asset version strategy.",
"type": "symfony-bundle",
"license": "proprietary",
"homepage": "https://github.com/enginiro/asset-bundle",
"authors": [
{
"name": "Jakub Jabůrek",
"email": "jaburek.jakub@gmail.com"
}
],
"config": {
"platform": {
"php": "8.2.16"
}
},
"autoload": {
"psr-4": {
"Enginiro\\AssetBundle\\": "src/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"symfony/config": "^7.1",
"symfony/dependency-injection": "^7.1",
"symfony/http-kernel": "^7.1",
"symfony/asset": "^7.1",
"psr/log": "^2|^3"
},
"require-dev": {
"enginiro/php-cs-fixer-config": "dev-main@dev"
},
"scripts": {
"phive-install": "phive install phpDocumentor@^3.3 psalm@^5.8 php-cs-fixer@^3.15"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/enginiro/php-cs-fixer-config"
}
]
}