Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit b25dd7e

Browse files
committed
Merge branch 'hotfix/353' into develop
Forward port #353 Conflicts: composer.json
2 parents 72c7016 + dd2d6cb commit b25dd7e

26 files changed

+29
-67
lines changed

.docheader

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/**
2+
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
3+
* @copyright Copyright (c) 2015-%year% Zend Technologies USA Inc. (http://www.zend.com)
4+
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
5+
*/

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ script:
4646
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer test-coverage ; fi
4747
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then composer test ; fi
4848
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then composer cs ; fi
49+
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then composer license-check ; fi
4950
- if [[ $DEPLOY_DOCS == "true" && "$TRAVIS_TEST_RESULT" == "0" ]]; then wget -O theme-installer.sh "https://raw.githubusercontent.com/zendframework/zf-mkdoc-theme/master/theme-installer.sh" ; chmod 755 theme-installer.sh ; ./theme-installer.sh ; fi
5051

5152
after_script:

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@
2626
},
2727
"require-dev": {
2828
"filp/whoops": "^1.1",
29+
"malukenho/docheader": "^0.1.0",
30+
"mockery/mockery": "^0.9.5",
2931
"phpunit/phpunit": "^4.7",
3032
"squizlabs/php_codesniffer": "^2.3",
3133
"zendframework/zend-expressive-aurarouter": "^1.0",
3234
"zendframework/zend-expressive-fastroute": "^1.0",
3335
"zendframework/zend-expressive-zendrouter": "^1.0",
34-
"zendframework/zend-servicemanager": "^2.6",
35-
"mockery/mockery": "^0.9.5"
36+
"zendframework/zend-servicemanager": "^2.6"
3637
},
3738
"autoload": {
3839
"psr-4": {
@@ -66,6 +67,7 @@
6667
"cs": "phpcs",
6768
"cs-fix": "phpcbf",
6869
"test": "phpunit",
69-
"test-coverage": "phpunit --coverage-clover clover.xml"
70+
"test-coverage": "phpunit --coverage-clover clover.xml",
71+
"license-check": "vendor/bin/docheader check src/"
7072
}
7173
}

src/AppFactory.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
53
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
64
* @copyright Copyright (c) 2015-2016 Zend Technologies USA Inc. (http://www.zend.com)
75
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License

src/Application.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
53
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
64
* @copyright Copyright (c) 2015-2016 Zend Technologies USA Inc. (http://www.zend.com)
75
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License

src/Container/ApplicationFactory.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
53
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
64
* @copyright Copyright (c) 2015-2016 Zend Technologies USA Inc. (http://www.zend.com)
75
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License

src/Container/Exception/ExceptionInterface.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @see http://github.com/zendframework/zend-expressive for the canonical source repository
3+
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
64
* @copyright Copyright (c) 2015-2016 Zend Technologies USA Inc. (http://www.zend.com)
75
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
86
*/

src/Container/Exception/InvalidArgumentException.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @see http://github.com/zendframework/zend-expressive for the canonical source repository
3+
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
64
* @copyright Copyright (c) 2015-2016 Zend Technologies USA Inc. (http://www.zend.com)
75
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
86
*/

src/Container/Exception/InvalidServiceException.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @see http://github.com/zendframework/zend-expressive for the canonical source repository
3+
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
64
* @copyright Copyright (c) 2015-2016 Zend Technologies USA Inc. (http://www.zend.com)
75
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
86
*/

src/Container/Exception/NotFoundException.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<?php
22
/**
3-
* Zend Framework (http://framework.zend.com/)
4-
*
5-
* @see http://github.com/zendframework/zend-expressive for the canonical source repository
3+
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
64
* @copyright Copyright (c) 2015-2016 Zend Technologies USA Inc. (http://www.zend.com)
75
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
86
*/

0 commit comments

Comments
 (0)