-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
35 lines (35 loc) · 910 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
{
"name": "kocal/biome-js-bundle",
"description": "Use Biome.js with Symfony",
"type": "symfony-bundle",
"keywords": ["biome", "biome.js", "symfony", "bundle"],
"license": "MIT",
"autoload": {
"psr-4": {
"Kocal\\BiomeJsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kocal\\BiomeJsBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Hugo Alliaume",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/console": "^6.4|^7.0",
"symfony/http-client": "^6.4|^7.0",
"symfony/process": "^6.4|^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.5 || ^11.1",
"symplify/easy-coding-standard": "^12.1.2",
"symfony/framework-bundle": "^6.4|^7.0"
}
}