-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
71 lines (71 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "daniel-de-wit/lighthouse-sanctum",
"description": "Laravel Sanctum support for Laravel Lighthouse.",
"license": "MIT",
"type": "library",
"keywords": [
"laravel-sanctum",
"lighthouse",
"lighthouse-sanctum"
],
"authors": [
{
"name": "Daniel de Wit",
"email": "[email protected]"
}
],
"homepage": "https://github.com/daniel-de-wit/lighthouse-sanctum",
"require": {
"php": "^8.1",
"illuminate/auth": "^9 || ^10 || ^11",
"illuminate/contracts": "^9 || ^10 || ^11",
"illuminate/database": "^9 || ^10 || ^11",
"illuminate/routing": "^9 || ^10 || ^11",
"illuminate/support": "^9 || ^10 || ^11",
"laravel/sanctum": "^3.0 || ^4.0",
"nuwave/lighthouse": "^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.14",
"mockery/mockery": "^1.5",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^8.0",
"orchestra/testbench-core": "^8.0",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^10.0",
"rector/rector": "^0.15.25"
},
"autoload": {
"psr-4": {
"DanielDeWit\\LighthouseSanctum\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DanielDeWit\\LighthouseSanctum\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"DanielDeWit\\LighthouseSanctum\\Providers\\LighthouseSanctumServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
],
"analyze": "vendor/phpstan/phpstan/phpstan analyse",
"check-style": "php-cs-fixer fix --diff --dry-run",
"coverage": "vendor/bin/phpunit",
"fix-style": "php-cs-fixer fix",
"rector": "vendor/bin/rector",
"test": "vendor/bin/phpunit --no-coverage"
}
}