-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
91 lines (91 loc) · 2.69 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "fumeapp/modeltyper",
"description": "Generate TypeScript interfaces from Laravel Models",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "kevin olson",
"email": "[email protected]"
}
],
"contributors": [
"kevin olson <[email protected]>",
"tanner Campbell <[email protected]>"
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.33.0",
"illuminate/database": "^11.33.0",
"illuminate/console": "^11.33.0"
},
"require-dev": {
"consolidation/robo": "^5.1.0",
"larastan/larastan": "^3.0.2",
"laravel/pint": "^1.18.3",
"orchestra/testbench": "^9.6.1",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpunit/phpunit": "^11.4.4",
"totten/lurkerlite": "^1.3"
},
"conflict": {
"laravel/framework": "<11.33.0",
"nesbot/carbon": "<3.5.0"
},
"autoload": {
"psr-4": {
"FumeApp\\ModelTyper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "test/Tests/",
"App\\": "test/laravel-skeleton/app/",
"Database\\Factories\\": "test/laravel-skeleton/database/factories/",
"Database\\Seeders\\": "test/laravel-skeleton/database/seeders/"
}
},
"extra": {
"laravel": {
"providers": [
"FumeApp\\ModelTyper\\ModelTyperServiceProvider"
]
}
},
"scripts": {
"pint": [
"@php vendor/bin/pint --ansi"
],
"test": [
"@php vendor/bin/phpunit --colors --display-errors --testdox"
],
"test-watch": [
"@php vendor/bin/robo watch 'src, test/Tests' 'clear && composer test'"
],
"test-coverage": [
"@php XDEBUG_MODE=coverage ./vendor/bin/phpunit --colors=always --testdox --coverage-text"
],
"stan": [
"@php vendor/bin/phpstan analyse --verbose --ansi"
],
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi"
},
"scripts-descriptions": {
"pint": "Run the Pint Linter and Fixer.",
"test": "Run the PHPUnit tests.",
"test-coverage": "Run the PHPUnit tests with code coverage.",
"stan": "Run PHPStan analyzer."
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}