Skip to content

Commit

Permalink
Merge pull request #181 from prolic/licenses
Browse files Browse the repository at this point in the history
Revise files header license - add docheader
  • Loading branch information
prolic authored Sep 5, 2016
2 parents 0944cb8 + 63f8dca commit e8d18de
Show file tree
Hide file tree
Showing 81 changed files with 369 additions and 383 deletions.
8 changes: 8 additions & 0 deletions .docheader
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**
* This file is part of the prooph/service-bus.
* (c) 2014-%year% prooph software GmbH <[email protected]>
* (c) 2015-%year% Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
34 changes: 24 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,27 @@
language: php

php:
- 5.5
- 5.6
- 7

env:
matrix:
- DEPENDENCIES=""
- DEPENDENCIES="--prefer-lowest --prefer-stable"
matrix:
fast_finish: true
include:
- php: 5.5
env:
- DEPENDENCIES=""
- php: 5.5
env:
- DEPENDENCIES="--prefer-lowest --prefer-stable"
- php: 5.6
env:
- DEPENDENCIES=""
- php: 5.6
env:
- DEPENDENCIES="--prefer-lowest --prefer-stable"
- php: 7
env:
- DEPENDENCIES=""
- TEST_COVERAGE=true
- php: 7
env:
- DEPENDENCIES="--prefer-lowest --prefer-stable"

before_script:
- composer self-update
Expand All @@ -17,9 +30,10 @@ before_script:
script:
- php ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
- ./vendor/bin/php-cs-fixer fix -v --diff --dry-run
- ./vendor/bin/docheader check examples/ src/ tests/

after_success:
- php vendor/bin/coveralls -v
- if [[ $TEST_COVERAGE == 'true' ]]; then php vendor/bin/coveralls -v; fi

notifications:
webhooks:
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@
"sandrokeil/interop-config": "^1.0",
"ramsey/uuid" : "~2.8",
"phpunit/phpunit": "~4.8",
"fabpot/php-cs-fixer": "1.7.*",
"friendsofphp/php-cs-fixer": "^1.12.0",
"satooshi/php-coveralls": "^1.0",
"zendframework/zend-servicemanager": "~2.6",
"tobiju/bookdown-bootswatch-templates": "^1.0"
"tobiju/bookdown-bootswatch-templates": "^1.0",
"malukenho/docheader": "^0.1.3"
},
"suggest" : {
"prooph/event-sourcing" : "Basic functionality for event sourced aggregates",
Expand Down
9 changes: 4 additions & 5 deletions examples/event/QuickStartSucceeded.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014-2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 8/23/15 - 12:26 AM
*/

namespace Example\Event;
Expand Down
9 changes: 4 additions & 5 deletions examples/quickstart.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014-2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 8/23/15 - 12:07 AM
*/

require_once __DIR__ . '/../vendor/autoload.php';
Expand Down
7 changes: 4 additions & 3 deletions src/Adapter/Adapter.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?php
/*
* This file is part of the prooph/event-store package.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
9 changes: 4 additions & 5 deletions src/Adapter/Exception/AdapterException.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 04/17/14 - 8:40 PM
*/

namespace Prooph\EventStore\Adapter\Exception;
Expand Down
9 changes: 4 additions & 5 deletions src/Adapter/Exception/ConfigurationException.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 04/17/14 - 8:41 PM
*/

namespace Prooph\EventStore\Adapter\Exception;
Expand Down
9 changes: 4 additions & 5 deletions src/Adapter/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 04/17/14 - 8:46 PM
*/

namespace Prooph\EventStore\Adapter\Exception;
Expand Down
9 changes: 4 additions & 5 deletions src/Adapter/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014-2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 8/14/15 - 8:43 PM
*/

namespace Prooph\EventStore\Adapter\Exception;
Expand Down
7 changes: 4 additions & 3 deletions src/Adapter/Feature/CanHandleTransaction.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?php
/*
* This file is part of the prooph/event-store package.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
9 changes: 4 additions & 5 deletions src/Adapter/InMemoryAdapter.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 08/30/14 - 11:41 PM
*/

namespace Prooph\EventStore\Adapter;
Expand Down
9 changes: 4 additions & 5 deletions src/Adapter/PayloadSerializer.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014-2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 8/14/15 - 8:11 PM
*/

namespace Prooph\EventStore\Adapter;
Expand Down
9 changes: 4 additions & 5 deletions src/Adapter/PayloadSerializer/JsonPayloadSerializer.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014-2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 8/14/15 - 8:18 PM
*/

namespace Prooph\EventStore\Adapter\PayloadSerializer;
Expand Down
9 changes: 4 additions & 5 deletions src/Aggregate/AggregateRepository.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 08/31/14 - 00:25 AM
*/

namespace Prooph\EventStore\Aggregate;
Expand Down
9 changes: 4 additions & 5 deletions src/Aggregate/AggregateTranslator.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 08/31/14 - 00:27 AM
*/

namespace Prooph\EventStore\Aggregate;
Expand Down
9 changes: 4 additions & 5 deletions src/Aggregate/AggregateType.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 06/06/14 - 11:34 PM
*/

namespace Prooph\EventStore\Aggregate;
Expand Down
9 changes: 4 additions & 5 deletions src/Aggregate/AggregateTypeProvider.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 05/24/14 - 08:17 AM
*/

namespace Prooph\EventStore\Aggregate;
Expand Down
9 changes: 4 additions & 5 deletions src/Aggregate/ConfigurableAggregateTranslator.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 08/31/14 - 01:28 AM
*/

namespace Prooph\EventStore\Aggregate;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 08/31/14 - 01:29 AM
*/

namespace Prooph\EventStore\Aggregate\Exception;
Expand Down
9 changes: 4 additions & 5 deletions src/Aggregate/Exception/AggregateTypeException.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 08/31/14 - 01:30 AM
*/

namespace Prooph\EventStore\Aggregate\Exception;
Expand Down
9 changes: 4 additions & 5 deletions src/Aggregate/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?php
/*
* This file is part of the prooph/event-store.
* (c) 2014 - 2015 prooph software GmbH <[email protected]>
/**
* This file is part of the prooph/service-bus.
* (c) 2014-2016 prooph software GmbH <[email protected]>
* (c) 2015-2016 Sascha-Oliver Prolic <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Date: 09/02/15 - 20:07
*/

namespace Prooph\EventStore\Aggregate\Exception;
Expand Down
Loading

0 comments on commit e8d18de

Please sign in to comment.