From 11078c17671a1f591b67726d6f5d67acc6559ebe Mon Sep 17 00:00:00 2001 From: Yoann Celton Date: Wed, 28 Nov 2018 16:10:05 +1100 Subject: [PATCH] Removing psr2 enforcing --- .styleci.yml | 1 - .travis.yml | 2 -- composer.json | 8 ++------ phpcs.xml.dist | 14 -------------- 4 files changed, 2 insertions(+), 23 deletions(-) delete mode 100644 .styleci.yml delete mode 100644 phpcs.xml.dist diff --git a/.styleci.yml b/.styleci.yml deleted file mode 100644 index 247a09c..0000000 --- a/.styleci.yml +++ /dev/null @@ -1 +0,0 @@ -preset: psr2 diff --git a/.travis.yml b/.travis.yml index 700575c..54c9b6a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ dist: trusty language: php php: - - 5.6 - 7.0 - 7.1 - 7.2 @@ -27,7 +26,6 @@ before_script: - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist script: - - vendor/bin/phpcs --standard=psr2 src/ - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover after_script: diff --git a/composer.json b/composer.json index 8f0c515..a076b0c 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,6 @@ "type": "library", "description": "Later", "keywords": [ - "Aryess", "PhpMatrixSdk" ], "homepage": "https://github.com/Aryess/PhpMatrixSdk", @@ -21,8 +20,7 @@ "rappasoft/laravel-helpers": "^1.0" }, "require-dev": { - "phpunit/phpunit" : ">=5.4.3", - "squizlabs/php_codesniffer": "^3.0" + "phpunit/phpunit" : ">=5.4.3" }, "autoload": { "psr-4": { @@ -35,9 +33,7 @@ } }, "scripts": { - "test": "phpunit", - "check-style": "phpcs src tests", - "fix-style": "phpcbf src tests" + "test": "phpunit" }, "extra": { "branch-alias": { diff --git a/phpcs.xml.dist b/phpcs.xml.dist deleted file mode 100644 index 6f5d66f..0000000 --- a/phpcs.xml.dist +++ /dev/null @@ -1,14 +0,0 @@ - - - The coding standard of PhpMatrixSdk package - - - - - - - - - - - \ No newline at end of file