Skip to content

Commit

Permalink
Change name from gossi -> phootwork
Browse files Browse the repository at this point in the history
  • Loading branch information
gossi committed Aug 17, 2019
1 parent 1f03e91 commit b9133e9
Show file tree
Hide file tree
Showing 8 changed files with 230 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .settings/org.eclipse.php.composer.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.php.composer.corebuildpath.includes.excludes=<buildpathentry kind\="src" path\="vendor"/>\n
4 changes: 2 additions & 2 deletions .settings/org.eclipse.php.core.prefs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
eclipse.preferences.version=1
include_path=0;/php-cs-fixer-config/src
phpVersion=php7.3
useShortTags=true
phpVersion=php7.2
useShortTags=false
use_asp_tags_as_php=false
2 changes: 2 additions & 0 deletions .settings/org.eclipse.php.ui.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.php.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/>
2 changes: 1 addition & 1 deletion .settings/org.eclipse.wst.common.project.facet.core.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<fixed facet="php.core.component"/>
<fixed facet="php.component"/>
<installed facet="php.core.component" version="1"/>
<installed facet="php.component" version="7.3"/>
<installed facet="php.composer.component" version="1"/>
<installed facet="php.component" version="7.2"/>
</faceted-project>
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ It's based on the ideas of [`prooph/php-cs-fixer-config`](https://github.com/pro
Run

```
$ composer require --dev gossi/php-cs-fixer-config
$ composer require --dev phootwork/php-cs-fixer-config
```

Add to composer.json;
Expand All @@ -33,7 +33,7 @@ Create a configuration file `.php_cs` in the root of your project:
```php
<?php

$config = new gossi\fixer\Config();
$config = new phootwork\fixer\Config();
$config->getFinder()
->exclude(['fixture'])
->in(__DIR__ . '/src')
Expand Down Expand Up @@ -131,3 +131,7 @@ echo "pre commit hook finish"
## License

This package is licensed using the MIT License.

## Editor/IDE Support

This repo contains a `editors/` folder, which has contains files to apply formatting based on these rules into your editor or IDE. You can have a look, if your editor/IDE is supported. A pull request to support yours is welcome
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name" : "gossi/php-cs-fixer-config",
"name" : "phootwork/php-cs-fixer-config",
"type" : "library",
"description" : "shared config for php-cs-fixer",
"license" : "MIT",
Expand All @@ -13,7 +13,7 @@
],
"autoload" : {
"psr-4" : {
"gossi\\fixer\\" : "src/"
"phootwork\\fixer\\" : "src/"
}
},
"require" : {
Expand Down
214 changes: 214 additions & 0 deletions editors/eclipse/phootwork.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Config extends BaseConfig {

public function __construct() {
parent::__construct('gossi');
parent::__construct('phootwork');
$this->setRiskyAllowed(true);
}

Expand Down

0 comments on commit b9133e9

Please sign in to comment.