diff --git a/.travis.yml b/.travis.yml
index 1e881588..084bdd95 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,8 +12,8 @@ php:
script:
- mkdir -p build/logs
- - phpunit --coverage-clover=coverage.clover
+ - phpunit -c build
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
\ No newline at end of file
+ - php ocular.phar code-coverage:upload --format=php-clover build/logs/coverage.clover
\ No newline at end of file
diff --git a/build.xml b/build.xml
new file mode 100644
index 00000000..8f8c5151
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,244 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/build/phpdox.xml b/build/phpdox.xml
new file mode 100644
index 00000000..0be4b97d
--- /dev/null
+++ b/build/phpdox.xml
@@ -0,0 +1,131 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/build/phpunit.xml b/build/phpunit.xml
new file mode 100644
index 00000000..3c63f182
--- /dev/null
+++ b/build/phpunit.xml
@@ -0,0 +1,37 @@
+
+
+
+
+ ../src/Aviat/Ion
+ ../src/Aviat/AnimeClient
+
+
+
+
+ ../tests/Ion
+
+
+ ../tests/AnimeClient
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpci.yml b/phpci.yml
deleted file mode 100644
index 3eeb10f7..00000000
--- a/phpci.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-build_settings:
- verbose: true
- ignore:
- - "tests"
- - "vendor"
-
-setup:
- env:
- PHPCI: true
-
-test:
- php_unit:
- config: 'phpunit.xml'
- php_docblock_checker:
- allowed_warnings: 0
- skip_classes: true
- php_loc:
- php_mess_detector:
- allow_failures: true
- rules:
- - "unusedcode"
- - "naming"
-complete:
\ No newline at end of file