forked from jobyh/laravel-react-make
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.13 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
{
"name": "fsac/laravel-react-make",
"description": "Artisan command to generate React components including TypeScript support",
"keywords": [
"laravel",
"react",
"typescript",
"artisan"
],
"license": "MIT",
"authors": [
{
"name": "Joby Harding",
"email": "code@fullstackapp.co"
}
],
"autoload": {
"psr-4": {
"FullStackAppCo\\ReactMake\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1|^8.2|^8.3",
"illuminate/console": "^10|^11",
"illuminate/filesystem": "^10|^11",
"illuminate/support": "^10|^11"
},
"extra": {
"laravel": {
"providers": [
"FullStackAppCo\\ReactMake\\ServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"orchestra/testbench": "^8.0",
"laravel/pint": "^1.14",
"larastan/larastan": "^2.9"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"format": [
"@php vendor/bin/pint"
],
"lint": [
"@php vendor/bin/phpstan"
],
"test ": [
"@php vendor/bin/phpunit"
]
}
}