diff --git a/README.md b/README.md index 879fed1..ed2478d 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,5 @@ # SubjectivePHP\Spl\Exceptions -[![Build Status](https://travis-ci.org/subjective-php/spl-exceptions.svg?branch=master)](https://travis-ci.org/subjective-php/spl-exceptions) -[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/subjective-php/spl-exceptions/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/subjective-php/spl-exceptions/?branch=master) -[![Coverage Status](https://coveralls.io/repos/github/subjective-php/spl-exceptions/badge.svg)](https://coveralls.io/github/subjective-php/spl-exceptions) - [![Latest Stable Version](https://poser.pugx.org/subjective-php/spl-exceptions/v/stable)](https://packagist.org/packages/subjective-php/spl-exceptions) [![Latest Unstable Version](https://poser.pugx.org/subjective-php/spl-exceptions/v/unstable)](https://packagist.org/packages/subjective-php/spl-exceptions) [![License](https://poser.pugx.org/subjective-php/spl-exceptions/license)](https://packagist.org/packages/subjective-php/spl-exceptions) @@ -12,13 +8,11 @@ [![Daily Downloads](https://poser.pugx.org/subjective-php/spl-exceptions/d/daily)](https://packagist.org/packages/subjective-php/spl-exceptions) [![Monthly Downloads](https://poser.pugx.org/subjective-php/spl-exceptions/d/monthly)](https://packagist.org/packages/subjective-php/spl-exceptions) -[![Documentation](https://img.shields.io/badge/reference-phpdoc-blue.svg?style=flat)](http://www.pholiophp.org/subjective-php/spl-exceptions) - Collection of standard exception classes ## Requirements -Chadicus\Spl\Exceptions requires PHP 7.0 (or later). +SubjectivePHP\Spl\Exceptions requires PHP 7.0 (or later). ## Composer To add the library as a local, per-project dependency use [Composer](http://getcomposer.org)! Simply add a dependency on`'subjective-php/spl-exceptions'`to your project's `composer.json` file such as: diff --git a/composer.json b/composer.json index a21e9fb..1a35f63 100644 --- a/composer.json +++ b/composer.json @@ -13,10 +13,14 @@ "subjective-php/util-exceptions": "Offers utilty classes for working with exceptions." }, "require-dev": { - "phpunit/phpunit": "^6.5", + "phpunit/phpunit": ">=6.5", "squizlabs/php_codesniffer": "^3.2" }, "autoload": { "psr-4": { "SubjectivePHP\\Spl\\Exceptions\\": "src" } + }, + "scripts": { + "lint": "vendor/bin/phpcs", + "test": "vendor/bin/phpunit" } } diff --git a/src/NotImplementedException.php b/src/NotImplementedException.php index dfced89..d24ef17 100644 --- a/src/NotImplementedException.php +++ b/src/NotImplementedException.php @@ -5,7 +5,7 @@ use RuntimeException; /** - * Exception thrown when a requested method or operation is not implemented. + * Exception thrown when a requested method or operation is not implemented. */ class NotImplementedException extends RuntimeException {