diff --git a/README.md b/README.md
index 63b3d41..d4be649 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# Gitea for PHP
     
-Gitea client library, in [PHP](https://secure.php.net).
+[Gitea](https://gitea.io) client library, in [PHP](https://secure.php.net).
## Resources
- [Documentation](https://github.com/sab-international/gitea.php/wiki)
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..c440ddb
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,50 @@
+{
+ "description": "Gitea client library.",
+ "homepage": "https://github.com/sab-international/gitea.php",
+ "license": "MIT",
+ "name": "sab-international/gitea",
+ "type": "library",
+ "authors": [{
+ "email": "contact@sabcomputer.com",
+ "name": "SAB International"
+ }],
+ "autoload": {
+ "psr-4": {"Gitea\\": "lib/"}
+ },
+ "autoload-dev": {
+ "files": ["vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"],
+ "psr-4": {"Gitea\\": "test/"}
+ },
+ "config": {
+ "optimize-autoloader": true
+ },
+ "keywords": [
+ "api",
+ "client",
+ "git",
+ "gitea",
+ "scm",
+ "vcs"
+ ],
+ "require": {
+ "php": ">=7.2.0",
+ "ext-curl": "*",
+ "cedx/enum": "^7.3.0",
+ "guzzlehttp/guzzle": "^6.3.3"
+ },
+ "require-dev": {
+ "cedx/coveralls": "^9.0.1",
+ "consolidation/robo": "^1.3.1",
+ "henrikbjorn/lurker": "^1.2.0",
+ "phpstan/phpstan": "^0.10.5",
+ "phpunit/phpunit": "^7.4.3"
+ },
+ "scripts": {
+ "coverage": "robo coverage",
+ "test": "robo test"
+ },
+ "support": {
+ "docs": "https://github.com/sab-international/gitea.php/wiki",
+ "issues": "https://github.com/sab-international/gitea.php/issues"
+ }
+}
diff --git a/phpdoc.xml b/phpdoc.xml
new file mode 100644
index 0000000..fae9b05
--- /dev/null
+++ b/phpdoc.xml
@@ -0,0 +1,18 @@
+
+
+ Gitea for PHP
+
+
+ var
+
+
+ doc/api
+
+
+
+
+
+
+ lib
+
+
diff --git a/phpstan.neon b/phpstan.neon
new file mode 100644
index 0000000..bd49d28
--- /dev/null
+++ b/phpstan.neon
@@ -0,0 +1,3 @@
+parameters:
+ level: max
+ paths: [lib, test]
diff --git a/phpunit.xml b/phpunit.xml
new file mode 100644
index 0000000..210945b
--- /dev/null
+++ b/phpunit.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ lib
+
+
+
+
+
+
+
+
+
+ test
+
+
+