File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 34
34
- DISPLAY=":99.0"
35
35
- PHAR_PHP_VERSION=7.2.23
36
36
- BOX_VERSION=3.8.3
37
- - PHALCON_VERSION=v4.0.0-rc.2
37
+ - PHALCON_VERSION=v4.0.0-rc.3
38
38
39
39
before_install :
40
40
- export PHP_VERSION=$(php-config --version)
Original file line number Diff line number Diff line change 99
99
/**
100
100
* Register the Composer autoloader (if any)
101
101
*/
102
- if (file_exists (PTOOLSPATH . DS .'vendor ' . DS . 'autoload.php ' )) {
103
- require_once PTOOLSPATH . DS .'vendor ' . DS . 'autoload.php ' ;
102
+ $ vendorAutoload = PTOOLSPATH . DS . 'vendor ' . DS . 'autoload.php ' ;
103
+ if (!file_exists ($ vendorAutoload )) {
104
+ throw new Exception ('Please run composer install ' );
104
105
}
105
106
107
+ require_once $ vendorAutoload ;
108
+
106
109
/**
107
110
* Register the custom loader (if any)
108
111
*
Original file line number Diff line number Diff line change 24
24
"require" : {
25
25
"php" : " >=7.2" ,
26
26
"ext-pdo" : " *" ,
27
- "ext-posix" : " *" ,
28
- "ext-phalcon" : " 4.0.0-rc.2" ,
27
+ "ext-phalcon" : " ^4.0.0-rc.3" ,
29
28
"psy/psysh" : " ~0.9" ,
30
29
"nikic/php-parser" : " ^4.2.4" ,
31
30
"phalcon/migrations" : " ^1.0"
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class Version extends PhVersion
27
27
// phpcs:disable
28
28
protected static function _getVersion (): array
29
29
{
30
- return [4 , 0 , 0 , 1 , 4 ];
30
+ return [4 , 0 , 0 , 2 , 2 ];
31
31
}
32
32
// phpcs:enable
33
33
}
You can’t perform that action at this time.
0 commit comments