forked from spatie/laravel-typescript-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 2.09 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
66
67
68
69
70
{
"name" : "spatie/laravel-typescript-transformer",
"description" : "Transform your PHP structures to TypeScript types",
"keywords" : [
"spatie",
"typescript-transformer"
],
"homepage" : "https://github.com/spatie/typescript-transformer",
"license" : "MIT",
"authors" : [
{
"name" : "Ruben Van Assche",
"email" : "[email protected]",
"homepage" : "https://spatie.be",
"role" : "Developer"
}
],
"require" : {
"php": "^8.1",
"illuminate/console": "^8.83|^9.30|^10.0",
"spatie/laravel-package-tools": "^1.12",
"spatie/typescript-transformer" : "^2.1.13"
},
"require-dev" : {
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.4",
"nesbot/carbon": "^2.63",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"pestphp/pest": "^1.22",
"phpunit/phpunit": "^9.0",
"spatie/data-transfer-object": "^2.0",
"spatie/enum": "^3.0",
"spatie/laravel-model-states": "^1.6|^2.0",
"spatie/pest-plugin-snapshots": "^1.1",
"spatie/phpunit-snapshot-assertions": "^4.2",
"spatie/temporary-directory": "^1.2",
"vimeo/psalm": "^4.2"
},
"autoload" : {
"psr-4" : {
"Spatie\\LaravelTypeScriptTransformer\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"Spatie\\LaravelTypeScriptTransformer\\Tests\\" : "tests"
}
},
"scripts" : {
"test" : "vendor/bin/pest",
"test-coverage" : "vendor/bin/pest --coverage",
"psalm": "./vendor/bin/psalm -c psalm.xml",
"format": "./vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config" : {
"sort-packages" : true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra" : {
"laravel" : {
"providers" : [
"Spatie\\LaravelTypeScriptTransformer\\TypeScriptTransformerServiceProvider"
]
}
},
"minimum-stability" : "dev",
"prefer-stable" : true
}