-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
38 lines (38 loc) · 1.08 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
{
"name": "sensiolabs/typescript-bundle",
"description": "TypeScript support for Symfony + AssetMapper",
"license": "MIT",
"type": "symfony-bundle",
"keywords": ["asset-mapper", "typescript"],
"homepage": "https://github.com/sensiolabs/AssetMapperTypeScriptBundle",
"authors": [
{
"name": "Maelan LE BORGNE",
"homepage": "https://github.com/maelanleborgne"
}
],
"require": {
"php": ">=8.1",
"symfony/asset-mapper": "^6.3|^7.0",
"symfony/console": "^6.3|^7.0",
"symfony/http-client": "^6.3|^7.0",
"symfony/process": "^6.3|^7.0"
},
"require-dev": {
"symfony/filesystem": "^6.3|^7.0",
"symfony/framework-bundle": "^6.3|^7.0",
"phpstan/phpstan": "^1",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Sensiolabs\\TypeScriptBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sensiolabs\\TypeScriptBundle\\Tests\\": "tests/"
}
}
}