-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
58 lines (58 loc) · 1.67 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
56
57
58
{
"name": "unleashedtech/deployer-recipes",
"type": "deployer-recipe",
"description": "Deployer 7+ functionality used by Unleashed Technologies",
"keywords": [
"deployer",
"recipe"
],
"homepage": "https://github.com/unleashedtech/deployer-recipes",
"license": "MIT",
"authors": [
{
"name": "Daniel Love",
"email": "[email protected]"
},
{
"name": "Dan Shumaker",
"email": "[email protected]"
},
{
"name": "Unleashed Technologies",
"homepage": "https://www.unleashed-technologies.com"
}
],
"support": {
"forum": "https://github.com/unleashedtech/deployer-recipes/discussions",
"issues": "https://github.com/unleashedtech/deployer-recipes/issues",
"rss": "https://github.com/unleashedtech/deployer-recipes/releases.atom",
"source": "https://github.com/unleashedtech/deployer-recipes"
},
"require": {
"php": "^7.3 || ^8.0",
"deployer/deployer": "^7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"UnleashedTech\\DeployerRecipes\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.5-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"deployer/deployer": "^7",
"roave/security-advisories": "dev-latest",
"unleashedtech/php-coding-standard": "^3.1"
}
}