Skip to content

Commit

Permalink
initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
mmasiukevich committed Feb 7, 2019
1 parent 8d4810c commit ceeb4f8
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 54 deletions.
6 changes: 3 additions & 3 deletions README.md
@@ -1,6 +1,6 @@
[![Build Status](https://travis-ci.org/php-service-bus/event-sourcing.svg?branch=master)](https://travis-ci.org/php-service-bus/event-sourcing)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/php-service-bus/event-sourcing/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/php-service-bus/event-sourcing/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/php-service-bus/event-sourcing/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/php-service-bus/event-sourcing/?branch=master)
[![Build Status](https://travis-ci.org/php-service-bus/event-sourcing.svg?branch=v3.0)](https://travis-ci.org/php-service-bus/event-sourcing)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/php-service-bus/event-sourcing/badges/quality-score.png?b=v3.0)](https://scrutinizer-ci.com/g/php-service-bus/event-sourcing/?branch=v3.0)
[![Code Coverage](https://scrutinizer-ci.com/g/php-service-bus/event-sourcing/badges/coverage.png?b=v3.0)](https://scrutinizer-ci.com/g/php-service-bus/event-sourcing/?branch=v3.0)

## What is it?

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Expand Up @@ -39,15 +39,15 @@
},
"require": {
"php": ">=7.2",
"php-service-bus/common": "dev-master",
"php-service-bus/storage-common": "dev-master",
"php-service-bus/message-serializer": "dev-master"
"php-service-bus/common": "^v3.0",
"php-service-bus/storage-common": "^v3.0",
"php-service-bus/message-serializer": "^v3.0"
},
"require-dev": {
"php-service-bus/storage-sql": "dev-master",
"php-service-bus/storage-sql": "^v3.0",
"doctrine/dbal": "^v2.6",
"phpunit/phpunit": "^7",
"vimeo/psalm": "dev-master"
"vimeo/psalm": "^v3"
},
"prefer-stable": true,
"minimum-stability": "dev",
Expand Down
84 changes: 39 additions & 45 deletions composer.lock

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

1 change: 0 additions & 1 deletion tests/AggregateIdTest.php
Expand Up @@ -14,7 +14,6 @@

use PHPUnit\Framework\TestCase;
use ServiceBus\EventSourcing\Exceptions\InvalidAggregateIdentifier;
use ServiceBus\EventSourcing\Tests\stubs\TestAggregate;
use ServiceBus\EventSourcing\Tests\stubs\TestAggregateId;

/**
Expand Down

0 comments on commit ceeb4f8

Please sign in to comment.