forked from rymanalu/dusk-for-sentinel
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 904 Bytes
/
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
{
"name": "rymanalu/dusk-for-sentinel",
"description": "Laravel Dusk for Sentinel.",
"keywords": ["authentication", "cartalyst", "dusk", "laravel", "sentinel", "testing"],
"type": "library",
"require": {
"php": "^8.0",
"laravel/dusk": "^6.0|^7.0",
"cartalyst/sentinel": "^6.0|^7.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/contracts": "^9.0|^10.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^9.5|^10.0"
},
"license": "MIT",
"authors": [
{
"name": "Roni Yusuf Manalu",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Rymanalu\\DuskForSentinel\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/User.php",
"tests/TestCase.php"
]
}
}