-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 941 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 941 Bytes
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": "iq2i/typescript-types-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle that downloads TypeScript type definitions from npm packages via jsDelivr CDN, enabling IDE autocompletion with Symfony AssetMapper.",
"license": "MIT",
"require": {
"php": ">=8.1",
"symfony/console": "^6.4|^7.4|^8.0",
"symfony/framework-bundle": "^6.4|^7.4|^8.0",
"symfony/http-client": "^6.4|^7.4|^8.0",
"symfony/http-kernel": "^6.4|^7.4|^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.52",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^10.5"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"IQ2i\\TypescriptTypesBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IQ2i\\TypescriptTypesBundle\\Tests\\": "tests"
}
}
}