-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 954 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
{
"name": "bolzer/symfony-typescript-routes",
"description": "A service to generate typescript paths from the router of an symfony application",
"license": "Apache-2.0",
"authors": [
{
"name": "Jan Noehles",
"email": "noehles.jan@gmail.com"
}
],
"autoload": {
"psr-4": {
"Bolzer\\SymfonyTypescriptRoutes\\": ""
}
},
"require": {
"php": ">=8.2",
"symfony/config": "^v7.0",
"symfony/dependency-injection": "^v7.0",
"symfony/http-kernel": "^v7.0",
"symfony/routing": "^v7.0",
"symfony/validator": "^v7.0",
"symfony/yaml": "^v7.0"
}
,
"require-dev": {
"friendsofphp/php-cs-fixer": "v3.40.0",
"phpspec/prophecy": "1.17.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5.20",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "5.16.0"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
}
}
}