-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.02 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
{
"name": "log1x/envoyer-deploy-commands",
"type": "package",
"license": "MIT",
"description": "A Laravel package to add Envoyer deploy commands to your application.",
"authors": [
{
"name": "Brandon Nifong",
"email": "[email protected]"
}
],
"keywords": [
"laravel",
"envoyer",
"artisan"
],
"support": {
"issues": "https://github.com/log1x/envoyer-deploy-commands/issues"
},
"autoload": {
"psr-4": {
"Log1x\\EnvoyerDeploy\\": "src/"
}
},
"require": {
"php": "^8.0",
"illuminate/console": "^9.0|^10.0|^11.0|^12.0",
"illuminate/support": "^9.0|^10.0|^11.0|^12.0",
"illuminate/http": "^9.0|^10.0|^11.0|^12.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"laravel/pint": "^1.13"
},
"extra": {
"laravel": {
"providers": [
"Log1x\\EnvoyerDeploy\\Providers\\EnvoyerDeployServiceProvider"
]
}
},
"scripts": {
"lint": [
"phpcs --ignore=vendor,examples --extensions=php --standard=PSR12 ."
]
}
}