Skip to content

Commit ad8da5b

Browse files
authored
Merge pull request #21 from Jeckel-Lab/command-bus
Command bus
2 parents 7484c82 + 0153213 commit ad8da5b

File tree

14 files changed

+387
-2269
lines changed

14 files changed

+387
-2269
lines changed

.circleci/config.yml

Lines changed: 0 additions & 89 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
# 2rd parties
1010
/vendor
11+
/composer.lock
1112

1213
# Temporary files
1314
/.phpcs-cache

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ before_script:
1010

1111
script:
1212
- ./vendor/bin/phpunit --coverage-clover=coverage.xml
13-
- ./vendor/bin/phpmd src text cleancode,codesize,design,naming,unusedcode
13+
- ./vendor/bin/phpmd src text ./ruleset.xml
1414
- ./vendor/bin/phpcs
15-
- ./vendor/bin/phpstan analyse
15+
- ./vendor/bin/psalm
1616

1717
after_success:
1818
- bash <(curl -s https://codecov.io/bash)

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Command Dispatcher
22
[![Latest Stable Version](https://poser.pugx.org/jeckel-lab/command-dispatcher/v/stable)](https://packagist.org/packages/jeckel-lab/command-dispatcher)
33
[![Total Downloads](https://poser.pugx.org/jeckel-lab/command-dispatcher/downloads)](https://packagist.org/packages/jeckel-lab/command-dispatcher)
4-
[![CircleCI](https://circleci.com/gh/Jeckel-Lab/command-dispatcher/tree/master.svg?style=svg)](https://circleci.com/gh/Jeckel-Lab/command-dispatcher/tree/master)
54
[![Build Status](https://travis-ci.org/Jeckel-Lab/command-dispatcher.svg?branch=master)](https://travis-ci.org/Jeckel-Lab/command-dispatcher)
65
[![codecov](https://codecov.io/gh/jeckel-lab/command-dispatcher/branch/master/graph/badge.svg)](https://codecov.io/gh/jeckel-lab/command-dispatcher)
76

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@
2626
},
2727
"require-dev": {
2828
"phpunit/phpunit": "^8.4",
29-
"phpstan/phpstan": "^0.12.0",
3029
"phpmd/phpmd": "^2.7",
31-
"squizlabs/php_codesniffer": "^3.5"
30+
"squizlabs/php_codesniffer": "^3.5",
31+
"vimeo/psalm": "^3.8",
32+
"phpro/grumphp": "^0.17.2"
3233
}
3334
}

0 commit comments

Comments
 (0)