Skip to content

Commit

Permalink
Merge pull request #29 from mittwald/refactor-ssh
Browse files Browse the repository at this point in the history
Bump API client & refactor SSH recipe
  • Loading branch information
martin-helmich authored Dec 14, 2023
2 parents 2c0ef30 + 7501cf1 commit 907a763
Show file tree
Hide file tree
Showing 18 changed files with 1,127 additions and 126 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/vendor/
/.idea
/.phpunit.cache
/.phpunit.cache
/.phpunit.result.cache
14 changes: 9 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"Mittwald\\Deployer\\": "src/"
},
"files": [
"src/Util/functions.php"]
"src/Util/functions.php"
]
},
"authors": [
{
Expand All @@ -18,17 +19,20 @@
],
"require": {
"php": "^8.2",
"mittwald/api-client": "^1.0",
"composer/semver": "^3.4"
"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"
"phpunit/phpunit": "^10.5",
"league/flysystem-memory": "^3.0"
},
"autoload-dev": {
"psr-4": {
"Deployer\\": "vendor/deployer/deployer/src"
"Deployer\\": "vendor/deployer/deployer/src",
"Mittwald\\Deployer\\": "tests/"
},
"files": [
"vendor/deployer/deployer/src/functions.php",
Expand Down
279 changes: 272 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 907a763

Please sign in to comment.