diff --git a/build.xml b/build.xml index 06bd862..bb18455 100644 --- a/build.xml +++ b/build.xml @@ -1,66 +1,18 @@ - - - - - - + + + + - - + + - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/build/package.xml b/build/package.xml deleted file mode 100644 index 9d8912a..0000000 --- a/build/package.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - Exporter - pear.phpunit.de - Provides the functionality to export PHP variables for visualization - Provides the functionality to export PHP variables for visualization - - Sebastian Bergmann - sebastian - sebastian@phpunit.de - yes - - 2013-07-09 - - 1.0.0 - 1.0.0 - - - stable - stable - - The BSD 3-Clause License - http://github.com/sebastianbergmann/exporter/tree - - - - - - - - - - - - - - - - - - 5.3.3 - - - 1.9.4 - - - - - diff --git a/composer.json b/composer.json index 43d92e1..afa032c 100644 --- a/composer.json +++ b/composer.json @@ -26,9 +26,13 @@ "email": "bschussek@2bepublished.at" } ], + "minimum-stability": "dev", "require": { "php": ">=5.3.3" }, + "require-dev": { + "phpunit/phpunit": "3.8.*@dev" + }, "autoload": { "classmap": [ "src/" @@ -40,3 +44,4 @@ } } } + diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 335e13d..15fb748 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,20 +1,18 @@ - ./tests + tests - ./src - - ./src/autoload.php - + src + diff --git a/src/autoload.php b/src/autoload.php deleted file mode 100644 index d7e2e9f..0000000 --- a/src/autoload.php +++ /dev/null @@ -1,21 +0,0 @@ - '/Context.php', - 'sebastianbergmann\\exporter\\exception' => '/Exception.php', - 'sebastianbergmann\\exporter\\exporter' => '/Exporter.php' - ); - } - $cn = strtolower($class); - if (isset($classes[$cn])) { - require __DIR__ . $classes[$cn]; - } - } -); -// @codeCoverageIgnoreEnd \ No newline at end of file