-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.1 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": "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",
"phpunit/phpunit": "^11.5",
"league/flysystem-memory": "^3.0",
"phpstan/phpstan": "^2.1",
"symfony/console": "^7.2"
},
"scripts": {
"test": "phpunit --color --testdox",
"check": "phpstan analyse"
},
"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"
]
}
}