-
Notifications
You must be signed in to change notification settings - Fork 242
/
composer.json
75 lines (75 loc) · 2.39 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
{
"name": "cartalyst/sentinel",
"description": "PHP 8.2+ Fully-featured Authentication & Authorization System",
"keywords": [
"php",
"cartalyst",
"laravel",
"auth",
"security"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Cartalyst LLC",
"email": "[email protected]",
"homepage": "https://cartalyst.com"
}
],
"require": {
"php": "^8.2",
"cartalyst/support": "^8.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"cartalyst/php-cs-fixer-config": "^2.0",
"illuminate/cookie": "^11.0",
"illuminate/database": "^11.0",
"illuminate/events": "^11.0",
"illuminate/http": "^11.0",
"illuminate/session": "^11.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^10.0"
},
"suggest": {
"illuminate/database": "By default, Sentinel utilizes the powerful Illuminate database layer.",
"illuminate/events": "To hook into various events across Sentinel, we recommend using Illuminate's event dispatcher.",
"symfony/http-foundation": "Required for native implementations."
},
"autoload": {
"psr-4": {
"Cartalyst\\Sentinel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cartalyst\\Sentinel\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"component": "package",
"branch-alias": {
"dev-master": "8.0.x-dev"
},
"laravel": {
"providers": [
"Cartalyst\\Sentinel\\Laravel\\SentinelServiceProvider"
],
"aliases": {
"Activation": "Cartalyst\\Sentinel\\Laravel\\Facades\\Activation",
"Reminder": "Cartalyst\\Sentinel\\Laravel\\Facades\\Reminder",
"Sentinel": "Cartalyst\\Sentinel\\Laravel\\Facades\\Sentinel"
}
}
},
"scripts": {
"cs:check": "./vendor/bin/php-cs-fixer fix --verbose --ansi --show-progress=estimating --diff --dry-run --config .php_cs.php",
"cs:fix": "./vendor/bin/php-cs-fixer fix --verbose --ansi --show-progress=estimating --config .php_cs.php",
"test": "./vendor/bin/phpunit --colors=always"
}
}