Removed codeception

This commit is contained in:
Alex Bilbie 2016-02-12 17:51:10 +00:00
parent aa0570c932
commit 21e2ccd0fb
4 changed files with 2 additions and 20 deletions

View File

@ -11,10 +11,7 @@
"paragonie/random_compat": "^1.1" "paragonie/random_compat": "^1.1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "4.8.*", "phpunit/phpunit": "4.8.*"
"mockery/mockery": "0.9.*",
"codeception/codeception": "~2.0",
"flow/jsonpath": "0.2.*"
}, },
"repositories": [ "repositories": [
{ {
@ -57,7 +54,7 @@
}, },
"autoload-dev": { "autoload-dev": {
"psr-4": { "psr-4": {
"LeagueTests\\": "tests/unit/" "LeagueTests\\": "tests/"
} }
}, },
"extra": { "extra": {

View File

@ -1,2 +0,0 @@
<?php
// This is global bootstrap for autoloading

View File

@ -1,8 +0,0 @@
class_name: ApiTester
modules:
enabled: [PhpBrowser, REST]
config:
PhpBrowser:
url: 'http://localhost:7777/'
REST:
url: 'http://localhost:7777/'

View File

@ -1,5 +0,0 @@
<?php
if (! @include_once __DIR__.'/../../vendor/autoload.php') {
exit("You must set up the project dependencies, run the following commands:\n> wget http://getcomposer.org/composer.phar\n> php composer.phar install\n");
}