This repository was archived by the owner on Jan 31, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +2
-37
lines changed Expand file tree Collapse file tree 6 files changed +2
-37
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ before_install:
52
52
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer require --dev --no-update satooshi/php-coveralls ; fi
53
53
- if [[ $SERVICE_MANAGER_VERSION != '' ]]; then composer require --dev --no-update "zendframework/zend-servicemanager:$SERVICE_MANAGER_VERSION" ; fi
54
54
- if [[ $SERVICE_MANAGER_VERSION == '' ]]; then composer require --dev --no-update "zendframework/zend-servicemanager:^3.0.3" ; fi
55
- - if [[ $SERVICE_MANAGER_VERSION == '' ]]; then composer remove --dev --no-update zendframework/zend-db zendframework/zend-session ; fi
56
55
57
56
install :
58
57
- travis_retry composer install --no-interaction --ignore-platform-reqs
Original file line number Diff line number Diff line change 20
20
"require-dev" : {
21
21
"zendframework/zend-cache" : " ^2.6.1" ,
22
22
"zendframework/zend-config" : " ^2.6" ,
23
- "zendframework/zend-db" : " ^2.5 " ,
23
+ "zendframework/zend-db" : " ^2.7 " ,
24
24
"zendframework/zend-filter" : " ^2.6" ,
25
25
"zendframework/zend-http" : " ^2.5.4" ,
26
26
"zendframework/zend-i18n" : " ^2.6" ,
27
27
"zendframework/zend-math" : " ^2.6" ,
28
28
"zendframework/zend-servicemanager" : " ^2.7.5 || ^3.0.3" ,
29
- "zendframework/zend-session" : " ^2.5 " ,
29
+ "zendframework/zend-session" : " ^2.6.2 " ,
30
30
"zendframework/zend-uri" : " ^2.5" ,
31
31
"fabpot/php-cs-fixer" : " 1.7.*" ,
32
32
"phpunit/PHPUnit" : " ^4.0"
Original file line number Diff line number Diff line change @@ -28,13 +28,6 @@ class CsrfTest extends \PHPUnit_Framework_TestCase
28
28
29
29
public function setUp ()
30
30
{
31
- if (! class_exists (Container::class)) {
32
- $ this ->markTestSkipped (
33
- 'Skipping zend-session-related tests until the component is updated '
34
- . ' to zend-servicemanager/zend-eventmanager v3 '
35
- );
36
- }
37
-
38
31
// Setup session handling
39
32
$ _SESSION = [];
40
33
$ sessionConfig = new StandardConfig ([
Original file line number Diff line number Diff line change @@ -24,13 +24,6 @@ class AbstractDbTest extends \PHPUnit_Framework_TestCase
24
24
25
25
public function setUp ()
26
26
{
27
- if (! class_exists ('Zend\Db\Adapter\Adapter ' )) {
28
- $ this ->markTestSkipped (
29
- 'Skipping zend-db-related tests until that component is updated '
30
- . 'to zend-servicemanager/zend-eventmanager v3 '
31
- );
32
- }
33
-
34
27
$ this ->validator = new ConcreteDbValidator ([
35
28
'table ' => 'table ' ,
36
29
'field ' => 'field ' ,
Original file line number Diff line number Diff line change 18
18
*/
19
19
class NoRecordExistsTest extends \PHPUnit_Framework_TestCase
20
20
{
21
- public function setUp ()
22
- {
23
- if (! class_exists ('Zend\Db\Adapter\Adapter ' )) {
24
- $ this ->markTestSkipped (
25
- 'Skipping zend-db-related tests until that component is updated '
26
- . 'to zend-servicemanager/zend-eventmanager v3 '
27
- );
28
- }
29
- }
30
-
31
21
/**
32
22
* Return a Mock object for a Db result with rows
33
23
*
Original file line number Diff line number Diff line change 21
21
*/
22
22
class RecordExistsTest extends \PHPUnit_Framework_TestCase
23
23
{
24
- public function setUp ()
25
- {
26
- if (! class_exists (Adapter::class)) {
27
- $ this ->markTestSkipped (
28
- 'Skipping zend-db-related tests until that component is updated '
29
- . 'to zend-servicemanager/zend-eventmanager v3 '
30
- );
31
- }
32
- }
33
-
34
24
/**
35
25
* Return a Mock object for a Db result with rows
36
26
*
You can’t perform that action at this time.
0 commit comments