-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
51 lines (51 loc) · 1.2 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
{
"name": "ashallendesign/laravel-executor",
"description": "Configurable code that can be ran when installing or updating your web app.",
"type": "library",
"homepage": "https://github.com/ash-jc-allen/laravel-executor",
"keywords": [
"ashallendesign",
"laravel",
"laravel-executor"
],
"license": "MIT",
"authors": [
{
"name": "Ash Allen",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"nesbot/carbon": "~2.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"illuminate/container": "^6.0|^7.0|^8.0",
"jolicode/jolinotif": "^2.1",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
"phpunit/phpunit": "^8.2"
},
"autoload": {
"psr-4": {
"AshAllenDesign\\LaravelExecutor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AshAllenDesign\\LaravelExecutor\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"AshAllenDesign\\LaravelExecutor\\Providers\\LaravelExecutorProvider"
],
"aliases": {
"Executor": "AshAllenDesign\\LaravelExecutor\\Facades\\Executor"
}
}
}
}