Skip to content

Commit

Permalink
Merge pull request #1 from codenamephp/main
Browse files Browse the repository at this point in the history
Initial release
  • Loading branch information
bastianschwarz authored Feb 6, 2022
2 parents 70c1b1c + 4755455 commit 26c2523
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
needs: calculate_next_version
with:
ref: ${{github.ref_name}}
future_release: ${{ needs.calculate_next_version.outputs.version }}
release_branch: 'release'
future-release: ${{ needs.calculate_next_version.outputs.version }}
release-branch: 'release'
6 changes: 6 additions & 0 deletions .idea/deployer.composer.iml

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

1 change: 1 addition & 0 deletions .idea/php.xml

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

9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,15 @@
![Packagist Downloads](https://img.shields.io/packagist/dt/codenamephp/deployer.composer)
![GitHub](https://img.shields.io/github/license/codenamephp/deployer.composer)

## What is it?

This package adds deployer tasks and a command factory for running composer on the command line.

## Installation

Easiest way is via composer. Just run `composer require codenamephp/deployer.composer` in your cli which should install the latest version for you.

## Usage
## Usage

Just use the built in tasks in your deployer file or create your own by using the command factory and a command runner or just
extend `\de\codenamephp\deployer\composer\task\AbstractComposerTask`
13 changes: 7 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"codenamephp/deployer.base": "dev-main",
"codenamephp/deployer.command": "dev-main"
"codenamephp/deployer.base": "^1.0",
"codenamephp/deployer.command": "^1.0"
},
"autoload": {
"psr-4": {
Expand All @@ -33,10 +34,10 @@
"sort-packages": true
},
"scripts": {
"phpunit": "tools/phpunit.phar -c test/phpunit.dist.xml test/",
"psalm": "tools/psalm --threads=10 --long-progress",
"composer-unused": "tools/composer-unused --no-progress --no-interaction --profile",
"composer-require-checker": "tools/composer-require-checker --no-interaction",
"phpunit": "XDEBUG_MODE=coverage tools/phpunit.phar -c test/phpunit.dist.xml test/",
"psalm": "XDEBUG_MODE=off tools/psalm --threads=10 --long-progress",
"composer-unused": "XDEBUG_MODE=off tools/composer-unused --no-progress --no-interaction --profile",
"composer-require-checker": "XDEBUG_MODE=off tools/composer-require-checker --no-interaction",
"infection": "XDEBUG_MODE=coverage tools/infection --min-msi=100 --min-covered-msi=100 --threads=4 --no-progress --show-mutations",
"ci-all": [
"composer validate",
Expand Down

0 comments on commit 26c2523

Please sign in to comment.