Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
# PHP CS Fixer can be run by using the composer script `composer format`

$finder = Finder::create()
->in(__DIR__)
->name('*.php')
->notName('*.blade.php')
->ignoreDotFiles(true)
->ignoreVCS(true)
->exclude('public')
->exclude('node_modules')
->exclude('build')
->append(['.php-cs-fixer.php']);
->in(__DIR__)
->name('*.php')
->notName('*.blade.php')
->ignoreDotFiles(true)
->ignoreVCS(true)
->exclude('public')
->exclude('node_modules')
->exclude('build')
->append(['.php-cs-fixer.php']);

return Config::create($finder);
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
},
"require-dev": {
"10up/wp_mock": "^0.4.2",
"friendsofphp/php-cs-fixer": "^3.64",
"larastan/larastan": "^2.9",
"orchestra/testbench": "^8.27",
"pestphp/pest": "^2.36",
Expand Down
74 changes: 37 additions & 37 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 17 additions & 17 deletions config/skeleton-package.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@

return [

/*
|--------------------------------------------------------------------------
| Example Package
|--------------------------------------------------------------------------
|
| Configuration files provide a great way to customize your package.
|
| In most cases, you should provide sane defaults and publishing the config
| should be optional.
|
| Here, we'll define a few inspirational quotes for use in our component
| and console command.
|
*/
/*
|--------------------------------------------------------------------------
| Example Package
|--------------------------------------------------------------------------
|
| Configuration files provide a great way to customize your package.
|
| In most cases, you should provide sane defaults and publishing the config
| should be optional.
|
| Here, we'll define a few inspirational quotes for use in our component
| and console command.
|
*/

'quotes' => [
'For every Sage there is an Acorn.',
],
'quotes' => [
'For every Sage there is an Acorn.',
],
];
Loading