-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.47 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
52
53
54
55
{
"name": "pharaonic/laravel-executor",
"description": "Laravel Executor is a package that allows you to execute commands, actions, jobs, and automated tasks on your production server.",
"keywords": [
"laravel executor",
"laravel execute command on production server",
"laravel execute action on production server",
"laravel execute job on production server",
"laravel execute automated task on production server"
],
"license": "MIT",
"authors": [
{
"name": "Moamen Eltouny (Raggi)",
"email": "[email protected]"
},
{
"name": "Karim Mohamed (Komtcho)",
"email": "[email protected]"
},
{
"name": "Moemen Gaballa",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"laravel/framework": ">=10.0"
},
"require-dev": {
"orchestra/testbench": "^8.0"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Pharaonic\\Laravel\\Executor\\ExecutorServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Pharaonic\\Laravel\\Executor\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Pharaonic\\Laravel\\Executor\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}