-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.83 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
{
"name": "gammamatrix/playground-auth",
"description": "The Playground authentication and authorization package for Laravel applications.",
"keywords": [
"auth",
"authentication",
"authorization",
"gammamatrix",
"laravel",
"playground",
"playground-auth",
"sanctum"
],
"homepage": "https://gammamatrix-playground.readthedocs.io/",
"license": "MIT",
"authors": [
{
"name": "Jeremy Postlethwaite",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"gammamatrix/playground": "dev-develop|dev-master|dev-feature/*|^73.0@dev|^73.0"
},
"require-dev": {
"gammamatrix/playground-test": "dev-develop|dev-master|dev-feature/*|^73.0@dev|^73.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Playground\\Auth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Feature\\Playground\\Auth\\": "tests/Feature/",
"Tests\\Unit\\Playground\\Auth\\": "tests/Unit/"
}
},
"config": {
"sort-packages": true,
"preferred-install": {
"gammamatrix/*": "source",
"*": "dist"
}
},
"extra": {
"branch-alias": {
"dev-develop": "73.x-dev",
"dev-master": "73.x-dev"
},
"laravel": {
"providers": [
"Playground\\Auth\\ServiceProvider"
]
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --verbose --debug --level max",
"cloc": "cloc --exclude-dir=output,vendor .",
"format": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/phpunit"
}
}