aboutsummaryrefslogtreecommitdiffstats
path: root/travis/install-phpunit-5-2.sh
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-02-13 12:02:25 +0100
committerMarc Alexander <admin@m-a-styles.de>2015-02-13 12:02:25 +0100
commit877774a296c2a61856c6f7012b588965d56073a9 (patch)
treee5a7007b386d28650227603bca74b8c578dd46be /travis/install-phpunit-5-2.sh
parent2787e799e17ee1358246087fe44ecf7ca9c4f9ed (diff)
parent0a775e043369dc6553c485596f238e67437262d1 (diff)
downloadforums-877774a296c2a61856c6f7012b588965d56073a9.tar
forums-877774a296c2a61856c6f7012b588965d56073a9.tar.gz
forums-877774a296c2a61856c6f7012b588965d56073a9.tar.bz2
forums-877774a296c2a61856c6f7012b588965d56073a9.tar.xz
forums-877774a296c2a61856c6f7012b588965d56073a9.zip
Merge pull request #3393 from bantu/ticket/13599
[ticket/13599] Remove Travis CI PHP 5.2 environment. No longer supported.
Diffstat (limited to 'travis/install-phpunit-5-2.sh')
-rwxr-xr-xtravis/install-phpunit-5-2.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/travis/install-phpunit-5-2.sh b/travis/install-phpunit-5-2.sh
deleted file mode 100755
index 28f9069960..0000000000
--- a/travis/install-phpunit-5-2.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-#
-# @copyright (c) 2015 phpBB Group
-# @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
-#
-
-# $1 - URL to .tar.gz
-download() {
- wget -q -O - "$1" | tar xzvf - --strip-components 1
-}
-
-mkdir phpunit
-cd phpunit
-download https://github.com/sebastianbergmann/phpunit/archive/3.6.12.tar.gz
-download https://github.com/sebastianbergmann/php-file-iterator/archive/1.3.1.tar.gz
-download https://github.com/sebastianbergmann/php-code-coverage/archive/1.1.3.tar.gz
-download https://github.com/sebastianbergmann/php-token-stream/archive/1.1.3.tar.gz
-download https://github.com/sebastianbergmann/php-text-template/archive/1.1.2.tar.gz
-download https://github.com/sebastianbergmann/php-timer/archive/1.0.2.tar.gz
-download https://github.com/sebastianbergmann/phpunit-mock-objects/archive/1.1.1.tar.gz
-download https://github.com/sebastianbergmann/dbunit/archive/1.1.2.tar.gz
-cd ..