-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
35 lines (35 loc) · 902 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": ">=5.6.4",
"laravel/dusk": ">=1.0 <=5.3",
"cartalyst/sentinel": "^2.0",
"illuminate/support": ">=5.4 <5.9",
"illuminate/contracts": ">=5.4 <5.9"
},
"require-dev": {
"phpunit/phpunit": ">=5.7",
"mockery/mockery": ">=0.9.6"
},
"license": "MIT",
"authors": [
{
"name": "Roni Yusuf Manalu",
"email": "rymanalu@gmail.com"
}
],
"autoload": {
"psr-4": {
"Rymanalu\\DuskForSentinel\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/User.php",
"tests/TestCase.php"
]
}
}