Download the PHP package jackiedo/artisan-php-cs-fixer without Composer

On this page you can find all versions of the php package jackiedo/artisan-php-cs-fixer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package artisan-php-cs-fixer

Artisan PHP CS Fixer

Total Downloads Latest Stable Version Latest Unstable Version License

The PHP Coding Standards Fixer tool fixes most issues in your code when you want to follow the PHP coding standards as defined in the PSR-1 and PSR-2 documents and many more.

If you are already using a linter to identify coding standards problems in your code, you know that fixing them by hand is tedious, especially on large projects. This tool does not only detect them, but also fixes them for you.

These are introductions from authors who created PHP-CS-Fixer and this package is a PHP-CS-Fixer bridge for use via Artisan CLI on Laravel. From now on, you can easily use PHP-CS-Fixer differently for each Laravel project with your team instead of installing a global fixer.

Features of this package

Overview

Look at one of the following topics to learn more about Artisan PHP CS Fixer

Versions and compatibility

Artisan PHP CS Fixer don't support Laravel 4.x. Currently, this package have following branchs compatible with Laravel 5.x and later:

Branch Laravel version
1.x 5.0 - 5.2
2.x 5.3 - 7.x
3.x 8.x and later

Note: This documentation is used for branch 3.x

Note for the version 3.x

If you have used this package before, please see here for the change in v3.x

Installation

You can install this package through Composer. At the root of your Laravel application directory, run the following command (in any terminal client):

Usage

Get version

Display PHP-CS-Fixer version installed.

Syntax:

Fix code

Fix your code with PHP Coding Standards.

Syntax:

Example:

Describe rule or rule set

Display description/usage of rule or rule set.

Syntax:

Exampple 1:

Exampple 2:

Configuration

To change the configuration of the fixer with your own purpose, you need publish the configuration file with the artisan vendor:publish as follow:

This will create one file named .php-cs-fixer.php in the root directory of your project. This file is returned an instance of PhpCsFixer\ConfigInterface which lets you configure the rules, the files and directories that need to be analyzed. From now and then, you can share this file with all of your developing team members. The rest is you have to think of a way to always sync this file for your team.

Exclusion of the cache file

Whenever you run the artisan php-cs-fixer:fix command, one file with named .php-cs-fixer.cache will be created at the root directory of your project. You can exclude this file by append following line into .gitignore file:

License

MIT © Jackie Do

PHP CS Fixer official documentation

For more documentation about PHP CS Fixer, you can visit here.

Thanks for use

Hopefully, this package is useful to you.


All versions of artisan-php-cs-fixer with dependencies

PHP Build Version
Package Version
Requires php Version >=7.3.0
illuminate/support Version ^8.0|^9.0
friendsofphp/php-cs-fixer Version ^3.0
jackiedo/path-helper Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jackiedo/artisan-php-cs-fixer contains the following files

Loading the files please wait ....