forked from manyapp/duskapiconf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 952 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
36
37
38
39
{
"name": "alebatistella/duskapiconf",
"description": "Change your Laravel configuration for each Dusk test with an easy API",
"type": "library",
"license": "mit",
"authors": [
{
"name": "Alexandre Batistella",
"email": "alexandre.bellas@gmail.com"
},
{
"name": "Inan Brunelli",
"email": "inanbruneli@gmail.com"
}
],
"autoload": {
"psr-4": {
"AleBatistella\\DuskApiConf\\": "src/"
}
},
"require": {
"php": "^8.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"AleBatistella\\DuskApiConf\\DuskApiConfServiceProvider"
],
"aliases": {}
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
}
}