Skip to content

Commit

Permalink
Merge pull request #21 from Jeckel-Lab/command-bus
Browse files Browse the repository at this point in the history
Command bus
  • Loading branch information
jeckel committed Feb 14, 2020
2 parents 7484c82 + 0153213 commit ad8da5b
Show file tree
Hide file tree
Showing 14 changed files with 387 additions and 2,269 deletions.
89 changes: 0 additions & 89 deletions .circleci/config.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

# 2rd parties
/vendor
/composer.lock

# Temporary files
/.phpcs-cache
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ before_script:

script:
- ./vendor/bin/phpunit --coverage-clover=coverage.xml
- ./vendor/bin/phpmd src text cleancode,codesize,design,naming,unusedcode
- ./vendor/bin/phpmd src text ./ruleset.xml
- ./vendor/bin/phpcs
- ./vendor/bin/phpstan analyse
- ./vendor/bin/psalm

after_success:
- bash <(curl -s https://codecov.io/bash)
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Command Dispatcher
[![Latest Stable Version](https://poser.pugx.org/jeckel-lab/command-dispatcher/v/stable)](https://packagist.org/packages/jeckel-lab/command-dispatcher)
[![Total Downloads](https://poser.pugx.org/jeckel-lab/command-dispatcher/downloads)](https://packagist.org/packages/jeckel-lab/command-dispatcher)
[![CircleCI](https://circleci.com/gh/Jeckel-Lab/command-dispatcher/tree/master.svg?style=svg)](https://circleci.com/gh/Jeckel-Lab/command-dispatcher/tree/master)
[![Build Status](https://travis-ci.org/Jeckel-Lab/command-dispatcher.svg?branch=master)](https://travis-ci.org/Jeckel-Lab/command-dispatcher)
[![codecov](https://codecov.io/gh/jeckel-lab/command-dispatcher/branch/master/graph/badge.svg)](https://codecov.io/gh/jeckel-lab/command-dispatcher)

Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"phpstan/phpstan": "^0.12.0",
"phpmd/phpmd": "^2.7",
"squizlabs/php_codesniffer": "^3.5"
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.8",
"phpro/grumphp": "^0.17.2"
}
}
Loading

0 comments on commit ad8da5b

Please sign in to comment.