File tree 23 files changed +37
-28
lines changed
23 files changed +37
-28
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,21 @@ matrix:
8
8
- DEPENDENCIES=""
9
9
- EXECUTE_CS_CHECK=true
10
10
- TEST_COVERAGE=true
11
-
12
11
- php : 7.3
13
12
env :
14
13
- DEPENDENCIES=""
15
14
- EXECUTE_CS_CHECK=false
16
15
- TEST_COVERAGE=false
16
+ - php : 7.4
17
+ env :
18
+ - DEPENDENCIES=""
19
+ - EXECUTE_CS_CHECK=false
20
+ - TEST_COVERAGE=false
21
+ - php : 8.0
22
+ env :
23
+ - DEPENDENCIES=""
24
+ - EXECUTE_CS_CHECK=false
25
+ - TEST_COVERAGE=false
17
26
18
27
cache :
19
28
directories :
@@ -29,8 +38,8 @@ before_script:
29
38
30
39
script :
31
40
- if [[ $TEST_COVERAGE == 'true' ]]; then php -dzend_extension=xdebug.so ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml; else ./vendor/bin/phpunit; fi
32
- # - if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/php-cs-fixer fix -v --diff --dry-run; fi
33
- # - if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/docheader check examples/ src/ tests/; fi
41
+ - if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/php-cs-fixer fix -v --diff --dry-run; fi
42
+ - if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/docheader check examples/ src/ tests/; fi
34
43
35
44
after_success :
36
45
- if [[ $TEST_COVERAGE == 'true' ]]; then php vendor/bin/coveralls -v; fi
Original file line number Diff line number Diff line change 16
16
}
17
17
],
18
18
"require" : {
19
- "php" : " ^7.2" ,
19
+ "php" : " ^7.2 || ^8.0 " ,
20
20
"roave/security-advisories" : " dev-master" ,
21
21
"event-engine/php-schema" : " ^0.1" ,
22
22
"event-engine/php-engine-utils" : " ^0.1" ,
23
23
"ramsey/uuid" : " ^3.6|^4.0"
24
24
},
25
25
"require-dev" : {
26
- "phpunit/phpunit" : " ^7 .0" ,
27
- "prooph/php-cs-fixer-config" : " ^0.3 " ,
28
- "satooshi /php-coveralls" : " ^1 .0" ,
26
+ "phpunit/phpunit" : " ^8.0 || ^9 .0" ,
27
+ "prooph/php-cs-fixer-config" : " ^0.4 " ,
28
+ "php-coveralls /php-coveralls" : " ^2 .0" ,
29
29
"malukenho/docheader" : " ^0.1.4"
30
30
},
31
31
"autoload" : {
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of even-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of even-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of even-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of even-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of even-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of even-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of even-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of event-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* This file is part of even-engine/php-messaging.
4
- * (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4
+ * (c) 2018-2021 prooph software GmbH <contact@prooph.de>
5
5
*
6
6
* For the full copyright and license information, please view the LICENSE
7
7
* file that was distributed with this source code.
You can’t perform that action at this time.
0 commit comments