-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 997 Bytes
/
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
{
"name": "mittwald/deployer-recipes",
"description": "A collection of Deployer recipies for easily deploying your applications onto the mittwald platform",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Mittwald\\Deployer\\": "src/"
},
"files": [
"src/Util/functions.php"
]
},
"authors": [
{
"name": "Martin Helmich",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"mittwald/api-client": "^2.0",
"composer/semver": "^3.4",
"league/flysystem": "^3.0"
},
"require-dev": {
"deployer/deployer": "^7.3",
"vimeo/psalm": "^5.15",
"phpunit/phpunit": "^10.5",
"league/flysystem-memory": "^3.0"
},
"autoload-dev": {
"psr-4": {
"Deployer\\": "vendor/deployer/deployer/src",
"Mittwald\\Deployer\\": "tests/"
},
"files": [
"vendor/deployer/deployer/src/functions.php",
"vendor/deployer/deployer/src/Support/helpers.php"
]
}
}