ilyes512 / code-style
This package is abandoned and no longer maintained.
The author suggests using the specsnl/code-style package instead.
An PHP_CodeSniffer codestyle package.
Package info
Language:Dockerfile
Type:phpcodesniffer-standard
pkg:composer/ilyes512/code-style
5.0.1
2026-03-31 10:44 UTC
Requires
- php: ^7.4 || ^8.0
- dealerdirect/phpcodesniffer-composer-installer: ^0.6.2 || ^0.7 || ^1.0
- slevomat/coding-standard: ^8.0
- squizlabs/php_codesniffer: ^3.0 || ^4.0
- 5.0.1
- 5.0.0
- 4.0.0
- dev-main / 3.x-dev
- 3.0.0
- dev-version-2 / 2.0.x-dev
- 2.0.0
- 1.0.0
- 1.0.0-alpha.2
- 1.0.0-alpha.1
- dev-updated-missed-ilyes512-references
- dev-update-readme
- dev-prepare-move-to-specsnl
- dev-dependabot/github_actions/DavidAnson/markdownlint-cli2-action-23.0.0
- dev-dependabot/github_actions/actions/checkout-6.0.2
This package is auto-updated.
Last update: 2026-03-31 10:45:05 UTC
README
An ECS (Easy Coding Standards) codestyle package.
Installation
You can install the package via composer:
composer require --dev specsnl/code-style
Usage
Add a phpcs.xml file to the root of your project. The below config example is for a Laravel project:
phpcs.yml:
<?xml version="1.0"?> <ruleset> <description>A Laravel project coding standard</description> <arg name="extensions" value="php" /> <arg name="report" value="full"/> <arg name="colors"/> <arg value="s"/> <!-- Show sniff codes in report --> <arg value="p"/> <!-- Show progress in report --> <file>.</file> <exclude-pattern>vendor</exclude-pattern> <exclude-pattern>node_modules</exclude-pattern> <exclude-pattern>.phpstan.cache</exclude-pattern> <exclude-pattern>.phpunit.cache</exclude-pattern> <exclude-pattern>bootstrap/cache</exclude-pattern> <exclude-pattern>storage/framework</exclude-pattern> <exclude-pattern>resources/css</exclude-pattern> <exclude-pattern>resources/js</exclude-pattern> <exclude-pattern>coverage</exclude-pattern> <rule ref="SpecsCodingStandard"/> </ruleset>
Using the PHPCSStandards plugin
The above config assumes you allowed installing the PHP_CodeSniffer plugin. Composer will prompt you to install it when you install this package. If you didn't, you can allow it by adding the following to your composer.json:
{
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
Annotated ruleset
The annotated ruleset.