-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'trunk' into dustyf-strip-slashes
- Loading branch information
Showing
32 changed files
with
1,405 additions
and
456 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
language: php | ||
|
||
php: | ||
- 5.2 | ||
- 5.3 | ||
- 5.4 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"containers": [ | ||
{ | ||
"prettyName": "PHP 5.2 on Ubuntu on Latest WP", | ||
"image": "tlovett1/php-5.2-phpunit-3.5", | ||
"beforeScripts": [ | ||
"service mysql start", | ||
"bash tests/bin/install-wp-tests.sh wordpress_test root '' localhost latest" | ||
], | ||
"testCommand": "phpunit" | ||
}, | ||
{ | ||
"prettyName": "PHP 5.2 on Ubuntu on WP 3.8", | ||
"image": "tlovett1/php-5.2-phpunit-3.5", | ||
"beforeScripts": [ | ||
"service mysql start", | ||
"bash tests/bin/install-wp-tests.sh wordpress_test root '' localhost 3.8" | ||
], | ||
"testCommand": "phpunit" | ||
}, | ||
{ | ||
"prettyName": "PHP 5.5 FPM WordPress Latest WP", | ||
"image": "tlovett1/php-fpm-phpunit-wp", | ||
"beforeScripts": [ | ||
"service mysql start", | ||
"bash tests/bin/install-wp-tests.sh wordpress_test root '' localhost latest" | ||
], | ||
"testCommand": "phpunit" | ||
}, | ||
{ | ||
"prettyName": "PHP 5.5 FPM WordPress WP 3.8", | ||
"image": "tlovett1/php-fpm-phpunit-wp", | ||
"beforeScripts": [ | ||
"service mysql start", | ||
"bash tests/bin/install-wp-tests.sh wordpress_test root '' localhost 3.8" | ||
], | ||
"testCommand": "phpunit" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,5 @@ | |
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "3.7.*" | ||
}, | ||
"autoload": { | ||
"files": ["init.php"] | ||
} | ||
} |
Oops, something went wrong.