-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
50 lines (50 loc) · 1.18 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
{
"name": "dcblogdev/laravel-box",
"description": "A Laravel Box package",
"license": "MIT",
"authors": [
{
"name": "David Carr",
"email": "[email protected]",
"homepage": "https://dcblog.dev"
}
],
"homepage": "https://github.com/dcblogdev/laravel-box",
"keywords": ["Laravel", "Box"],
"require": {
"php": "^8.1",
"illuminate/support": "10.x|11.x",
"guzzlehttp/guzzle": "7.x"
},
"require-dev": {
"pestphp/pest": "^1.23|^2.0",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^8.13"
},
"autoload": {
"psr-4": {
"Dcblogdev\\Box\\": "src/",
"Dcblogdev\\Box\\Tests\\": "tests"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"laravel": {
"providers": [
"Dcblogdev\\Box\\BoxServiceProvider"
],
"aliases": {
"Box": "Dcblogdev\\Box\\Facades\\Box"
}
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}