├── LICENSE ├── README.md ├── composer.json ├── logo.md ├── logo.png ├── php-cs-fixer ├── php-cs-fixer.phar └── php-cs-fixer.phar.asc /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012+ Fabien Potencier, Dariusz Rumiński 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is furnished 8 | to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | PHP CS Fixer logo 4 | 5 |

6 | 7 | PHP Coding Standards Fixer 8 | ========================== 9 | 10 | This is a *shim* package of [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer/). 11 | For any related topic, please visit the [main repo](https://github.com/FriendsOfPHP/PHP-CS-Fixer/) page. 12 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "php-cs-fixer/shim", 3 | "description": "A tool to automatically fix PHP code style", 4 | "license": "MIT", 5 | "type": "application", 6 | "authors": [ 7 | { 8 | "name": "Fabien Potencier", 9 | "email": "fabien@symfony.com" 10 | }, 11 | { 12 | "name": "Dariusz Rumiński", 13 | "email": "dariusz.ruminski@gmail.com" 14 | } 15 | ], 16 | "require": { 17 | "php": "^7.4 || ^8.0", 18 | "ext-json": "*", 19 | "ext-tokenizer": "*" 20 | }, 21 | "replace": { 22 | "friendsofphp/php-cs-fixer": "self.version" 23 | }, 24 | "suggest": { 25 | "ext-dom": "For handling output formats in XML", 26 | "ext-mbstring": "For handling non-UTF8 characters." 27 | }, 28 | "bin": [ 29 | "php-cs-fixer", 30 | "php-cs-fixer.phar" 31 | ], 32 | "config": { 33 | "sort-packages": true 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /logo.md: -------------------------------------------------------------------------------- 1 | The logo is © 2010+ Sensio Labs. 2 | 3 | Original resolution can be found at https://github.com/PHP-CS-Fixer/logo . 4 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CS-Fixer/shim/eea219a577085bd13ff0cb644a422c20798316c7/logo.png -------------------------------------------------------------------------------- /php-cs-fixer: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 8 | * Dariusz Rumiński 9 | * 10 | * This source file is subject to the MIT license that is bundled 11 | * with this source code in the file LICENSE. 12 | */ 13 | 14 | declare(strict_types=1); 15 | 16 | Phar::loadPhar(__DIR__ . '/php-cs-fixer.phar', 'php-cs-fixer.phar'); 17 | 18 | require 'phar://php-cs-fixer.phar/php-cs-fixer'; 19 | -------------------------------------------------------------------------------- /php-cs-fixer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CS-Fixer/shim/eea219a577085bd13ff0cb644a422c20798316c7/php-cs-fixer.phar -------------------------------------------------------------------------------- /php-cs-fixer.phar.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CS-Fixer/shim/eea219a577085bd13ff0cb644a422c20798316c7/php-cs-fixer.phar.asc --------------------------------------------------------------------------------