forked from fumeapp/modeltyper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.96 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
{
"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.1",
"illuminate/support": "9.*|10.*",
"illuminate/database": "^10.0.0",
"illuminate/console": "^10.0.0"
},
"require-dev": {
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.0",
"laravel/pint": "^1.7",
"nunomaduro/larastan": "^2.2",
"consolidation/robo": "^4.0",
"totten/lurkerlite": "^1.3",
"doctrine/dbal": "^3.6"
},
"autoload": {
"psr-4": {
"FumeApp\\ModelTyper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "test/Tests/",
"App\\": "test/laravel-skeleton/app/"
}
},
"extra": {
"laravel": {
"providers": [
"FumeApp\\ModelTyper\\ModelTyperServiceProvider"
]
}
},
"scripts": {
"pint": [
"vendor/bin/pint"
],
"test": [
"vendor/bin/phpunit --colors --display-errors --testdox"
],
"test-watch": [
"vendor/bin/robo watch 'src, test/Tests' 'clear && composer test'"
],
"test-coverage": [
"XDEBUG_MODE=coverage ./vendor/bin/phpunit --colors=always --testdox --coverage-text"
],
"stan": [
"vendor/bin/phpstan analyse --xdebug"
]
},
"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 the PHPStan analyser."
}
}