forked from dan-the-dev/laravel-typescript-transformer-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 970 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
{
"name": "danthedev/laravel-typescript-transformer-api",
"description": "Extension of `spatie/laravel-typescript-transformer` with improvements to work with API Requests and Responses",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Danthedev\\LaravelTypescriptTransformerApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "dan-the-dev",
"email": "daniele.scillia@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"spatie/laravel-typescript-transformer": "^2.1",
"laravel/framework": "^10.0",
"spatie/laravel-data": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.9"
},
"scripts": {
"test": "php vendor/phpunit/phpunit/phpunit"
}
}