diff --git a/.scrutinizer.yml b/.scrutinizer.yml deleted file mode 100644 index 0e7d790..0000000 --- a/.scrutinizer.yml +++ /dev/null @@ -1,32 +0,0 @@ -build: - environment: - php: 8.0.0 - - nodes: - analysis: - tests: - override: - - php-scrutinizer-run - - tests-and-coverage: - environment: - php: - ini: - "xdebug.mode": coverage - tests: - override: - - phpcs-run ./src - - command: "vendor/bin/phpunit test/phpunit --coverage-clover test/phpunit/_coverage --whitelist src" - coverage: - file: "test/phpunit/_coverage" - format: "php-clover" - -checks: - php: - code_rating: true - duplication: true - -filter: - excluded_paths: - - test/* - - vendor/* \ No newline at end of file diff --git a/README.md b/README.md index c2c179c..4246b73 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -Centralised construction of a project's core objects. -===================================================== +Centralised container of a project's core objects. +================================================== When PHP applications have a lot of classes, it's important to use [dependency injection][dependency-injection] techniques to keep your code maintainable and testable; rather than constructing objects within the functions they are used, pass the objects into the function via parameters. @@ -14,10 +14,10 @@ This repository is used within [WebEngine][webengine] to automatically invoke Pa Build status - + Code quality - + Code coverage diff --git a/composer.json b/composer.json index 325ca4a..2ceed26 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "phpgt/servicecontainer", - "description": "Centralised construction of a project's core objects.", + "description": "Centralised container of a project's core objects.", "license": "MIT", "require": {