Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Log1x committed Nov 10, 2019
1 parent cbbed85 commit a873281
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
},
"require": {
"php": ">=7.1.3"
"php": ">=7.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4"
Expand All @@ -33,7 +33,7 @@
},
"scripts": {
"lint": [
"phpcs --ignore=vendor,src/views --extensions=php --standard=PSR12 ."
"phpcs --ignore=vendor,src/resources --extensions=php --standard=PSR12 ."
]
}
}
14 changes: 7 additions & 7 deletions composer.lock

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

4 changes: 2 additions & 2 deletions src/Providers/AcfComposerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public function register()
public function boot()
{
$this->publishes([
__DIR__ . '/../../config/acf.php' => $this->app->configPath('acf.php'),
__DIR__ . '/../resources/views/view-404.blade.php' => $this->app->resourcePath('views/blocks/view-404.blade.php')
__DIR__ . '/../../config/acf.php' => $this->app->configPath('acf.php'),
__DIR__ . '/../resources/views/view-404.blade.php' => $this->app->resourcePath('views/blocks/view-404.blade.php'), // phpcs:disable Generic.Files.LineLength
]);

$this->commands([
Expand Down

0 comments on commit a873281

Please sign in to comment.