Skip to content

Commit

Permalink
Allow Laravel to autodiscover the service provider
Browse files Browse the repository at this point in the history
  • Loading branch information
erikgall committed Mar 19, 2020
1 parent 2fea7e9 commit ca57d32
Show file tree
Hide file tree
Showing 2 changed files with 638 additions and 8 deletions.
17 changes: 13 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"name": "erikgall/php-cs-fixer-config",
"description": "Personal FriendsOfPHP/PHP-CS-Fixer configuration.",
"description": "FriendsOfPHP/PHP-CS-Fixer configuration.",
"type": "library",
"require": {
"php": "^7.2.5",
"friendsofphp/php-cs-fixer": "^2.16"
"friendsofphp/php-cs-fixer": "^2.16",
"illuminate/console": "^7.2",
"illuminate/filesystem": "^7.2",
"illuminate/support": "^7.2"
},
"license": "MIT",
"authors": [
Expand All @@ -23,5 +25,12 @@
},
"autoload-dev": {
"ErikGall\\PhpCsFixer\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"ErikGall\\PhpCsFixer\\ServiceProvider"
]
}
}
}
Loading

0 comments on commit ca57d32

Please sign in to comment.