Remove PHP 5.3 from Travis suite, updating minimum version requirement.

Since SilverStripe 4 isn't going to work on PHP 5.3, I have removed it from the Travis suite.
This commit is contained in:
Sam Minnee 2015-08-01 15:29:44 +12:00
parent 09210efbc0
commit cd02fff8e4
3 changed files with 2 additions and 4 deletions

View File

@ -37,8 +37,6 @@ matrix:
env: DB=MYSQL env: DB=MYSQL
- php: 5.4 - php: 5.4
env: DB=MYSQL BEHAT_TEST=1 env: DB=MYSQL BEHAT_TEST=1
- php: 5.3
env: DB=MYSQL
- php: 7.0 - php: 7.0
env: DB=MYSQL env: DB=MYSQL
- php: nightly - php: nightly

View File

@ -16,7 +16,7 @@
} }
], ],
"require": { "require": {
"php": ">=5.3.3", "php": ">=5.4.0",
"composer/installers": "~1.0" "composer/installers": "~1.0"
}, },
"require-dev": { "require-dev": {

View File

@ -8,7 +8,7 @@ Our web-based [PHP installer](installation/) can check if you meet the requireme
## Web server software requirements ## Web server software requirements
* PHP 5.3.3+ * PHP 5.4+
* We recommend using a PHP accelerator or opcode cache, such as [xcache](http://xcache.lighttpd.net/) or [WinCache](http://www.iis.net/download/wincacheforphp). * We recommend using a PHP accelerator or opcode cache, such as [xcache](http://xcache.lighttpd.net/) or [WinCache](http://www.iis.net/download/wincacheforphp).
* Allocate at least 48MB of memory to each PHP process. (SilverStripe can be resource hungry for some intensive operations.) * Allocate at least 48MB of memory to each PHP process. (SilverStripe can be resource hungry for some intensive operations.)
* Required modules: dom, gd2, fileinfo, hash, iconv, mbstring, mysqli (or other database driver), session, simplexml, tokenizer, xml. * Required modules: dom, gd2, fileinfo, hash, iconv, mbstring, mysqli (or other database driver), session, simplexml, tokenizer, xml.