-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.07 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "kocal/biome-js-bundle",
"description": "A Symfony Bundle to easily download and use Biome.js in your Symfony applications, to lint your front assets without needing Node.js.",
"type": "symfony-bundle",
"keywords": ["biome", "biome.js", "symfony", "bundle"],
"license": "MIT",
"autoload": {
"psr-4": {
"Kocal\\BiomeJsBundle\\": "src/"
}
},
"authors": [
{
"name": "Hugo Alliaume",
"email": "hugo@alliau.me"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=8.1",
"symfony/console": "^6.4|^7.0|^8.0",
"symfony/filesystem": "^6.4|^7.0|^8.0",
"symfony/http-client": "^6.4|^7.0|^8.0",
"symfony/process": "^6.4|^7.0|^8.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1.21",
"symplify/easy-coding-standard": "12.5.22",
"symfony/framework-bundle": "^6.4|^7.0|^8.0"
},
"config": {
"audit": {
"ignore": [
"PKSA-365x-2zjk-pt47"
]
}
}
}