-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.67 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "brainshaker95/php-to-ts-bundle",
"description": "Convert PHP model classes to TypeScript interfaces",
"version": "0.5.0",
"keywords": [
"bundle",
"symfony",
"php",
"typescript"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Patrick Rupp"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "3.49.0",
"phpstan/phpstan": "1.10.59",
"phpstan/phpstan-strict-rules": "1.5.2",
"symplify/phpstan-rules": "12.4.8",
"phpunit/phpunit": "10.5.10",
"symfony/framework-bundle": "6.4.3",
"symfony/yaml": "6.4.3",
"cweagans/composer-patches": "1.7.3"
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"nikic/php-parser": "^4.18",
"symfony/config": "^5.0 || ^6.0 || ^7.0",
"symfony/console": "^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.0 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^5.0 || ^6.0 || ^7.0",
"symfony/filesystem": "^5.0 || ^6.0 || ^7.0",
"symfony/finder": "^5.0 || ^6.0 || ^7.0",
"symfony/http-foundation": "^5.0 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.0 || ^6.0 || ^7.0",
"symfony/property-access": "^5.0 || ^6.0 || ^7.0",
"symfony/serializer": "^5.0 || ^6.0 || ^7.0",
"symfony/string": "^5.0 || ^6.0 || ^7.0",
"phpstan/phpdoc-parser": "^1.25"
},
"autoload": {
"psr-4": {
"Brainshaker95\\PhpToTsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"extra": {
"patches-file": "composer-patches.json"
}
}