From b23014ec8a4ae4d1809f2ce70fde6307dbbaa7f0 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Mon, 18 Nov 2019 15:45:43 +1030 Subject: [PATCH] Clean up --- .gitattributes | 1 - .travis.yml | 10 ---------- README.md | 5 ++--- composer.json | 2 +- 4 files changed, 3 insertions(+), 15 deletions(-) delete mode 100644 .travis.yml diff --git a/.gitattributes b/.gitattributes index a3b1f36..5ed1af6 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,6 +1,5 @@ .gitattributes export-ignore .gitignore export-ignore .travis.yml export-ignore - phpunit.xml export-ignore tests export-ignore diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a74e814..0000000 --- a/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: php - -php: - - 7.2 - -install: - - composer install --no-interaction --prefer-source - -script: - - vendor/bin/phpunit diff --git a/README.md b/README.md index 68d8cf3..0fdfda5 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,9 @@ -# tobyz/json-api-server +# json-api-server -[![Build Status](https://img.shields.io/travis/com/tobyz/json-api-server.svg?style=flat)](https://travis-ci.com/tobyz/json-api-server) [![Pre Release](https://img.shields.io/packagist/vpre/tobyz/json-api-server.svg?style=flat)](https://github.com/tobyz/json-api-server/releases) [![License](https://img.shields.io/packagist/l/tobyz/json-api-server.svg?style=flat)](https://packagist.org/packages/tobyz/json-api-server) -**A fully automated framework-agnostic [JSON:API](http://jsonapi.org) server implementation in PHP.** +**A fully automated [JSON:API](http://jsonapi.org) server implementation in PHP.** Define your schema, plug in your models, and we'll take care of the rest. 🍻 ```bash diff --git a/composer.json b/composer.json index 7a17686..7c0d1e6 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "tobyz/json-api-server", - "description": "A fully automated framework-agnostic JSON:API server implementation in PHP.", + "description": "A fully automated JSON:API server implementation in PHP.", "require": { "php": "^7.2", "doctrine/inflector": "^1.3",