Skip to content

Commit

Permalink
Tool info update
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed May 17, 2015
1 parent 9535d0d commit 4cc9468
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Vim-php-cs-fixer
================

Integrate [php-cs-fixer](https://github.com/fabpot/PHP-CS-Fixer) created by fabpot.
Integrate [php-cs-fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer).

This plugin will execute the `php-cs-fixer` command on the directory or file (depends on which command you call). See options to know how to customize that.

Expand All @@ -10,7 +10,7 @@ This plugin will execute the `php-cs-fixer` command on the directory or file (de
```viml
" If php-cs-fixer is in $PATH, you don't need to define line below
" let g:php_cs_fixer_path = "~/php-cs-fixer.phar" " define the path to the php-cs-fixer.phar
let g:php_cs_fixer_level = "all" " which level ?
let g:php_cs_fixer_level = "symfony" " which level ?
let g:php_cs_fixer_config = "default" " configuration
let g:php_cs_fixer_php_path = "php" " Path to PHP
" If you want to define specific fixers:
Expand Down Expand Up @@ -44,7 +44,7 @@ cd ~/.vim/bundle
git clone git@github.com:stephpy/vim-php-cs-fixer.git
```

To see how to install `php-cs-fixer`, look at [php-cs-fixer](https://github.com/fabpot/PHP-CS-Fixer) repository.
To see how to install `php-cs-fixer`, look at [php-cs-fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer) repository.

If you see any improvement or question, contribute or create an issue

2 changes: 1 addition & 1 deletion doc/vim-php-cs-fixer.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

License |vim-php-cs-fixer-license|

Integrate php-cs-fixer (https://github.com/fabpot/PHP-CS-Fixer).
Integrate PHP CS Fixer (https://github.com/FriendsOfPHP/PHP-CS-Fixer).

This plugin will execute the php-cs-fixer command
on the directory or file (depends on which command you call).
Expand Down
2 changes: 1 addition & 1 deletion plugin/php-cs-fixer.vim
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let g:vim_php_cs_fixer = 1

" Global options definition."{{{
let g:php_cs_fixer_path = get(g:, 'php_cs_fixer_path', '~/php-cs-fixer.phar')
let g:php_cs_fixer_level = get(g:, 'php_cs_fixer_level', 'all')
let g:php_cs_fixer_level = get(g:, 'php_cs_fixer_level', 'symfony')
let g:php_cs_fixer_php_path = get(g:, 'php_cs_fixer_php_path', 'php')
let g:php_cs_fixer_enable_default_mapping = get(g:, 'php_cs_fixer_enable_default_mapping', '1')
let g:php_cs_fixer_dry_run = get(g:, 'php_cs_fixer_dry_run', 0)
Expand Down

0 comments on commit 4cc9468

Please sign in to comment.