diff --git a/config/autoload/development.local.php.dist b/config/autoload/global.dev.php.dist similarity index 92% rename from config/autoload/development.local.php.dist rename to config/autoload/global.dev.php.dist index 73be73c..6130a96 100644 --- a/config/autoload/development.local.php.dist +++ b/config/autoload/global.dev.php.dist @@ -9,7 +9,7 @@ * Developers on your team will then automatically enable them by calling on * `composer development-enable`. * - * You may also create files matching the glob pattern `{,*.}{global,local}-development.php`. + * You may also create files matching the glob pattern `{,*.}{global,local}.dev.php`. */ declare(strict_types=1); diff --git a/config/development.config.php.dist b/config/development.config.php.dist index e6a4249..2fd3baf 100644 --- a/config/development.config.php.dist +++ b/config/development.config.php.dist @@ -13,7 +13,7 @@ * DO NOT MODIFY THIS FILE. * * Provide your own development-mode settings by editing the file - * `config/autoload/development.local.php.dist`. + * `config/autoload/global.dev.php.dist`. * * Because this file is aggregated last, it ensures: * @@ -30,7 +30,7 @@ use Laminas\ConfigAggregator\ConfigAggregator; use Laminas\ConfigAggregator\PhpFileProvider; $aggregator = new ConfigAggregator([ - new PhpFileProvider(realpath(__DIR__) . '/autoload/{,*.}{global,local}-development.php'), + new PhpFileProvider(realpath(__DIR__) . '/autoload/{,*.}{global,local}.dev.php'), new ArrayProvider([ 'debug' => true, ConfigAggregator::ENABLE_CACHE => false, diff --git a/src/MezzioInstaller/config.php b/src/MezzioInstaller/config.php index 00b38ea..5136964 100644 --- a/src/MezzioInstaller/config.php +++ b/src/MezzioInstaller/config.php @@ -258,13 +258,13 @@ 'filp/whoops', ], 'flat' => [ - 'Resources/config/error-handler-whoops.php' => 'config/autoload/development.local.php.dist', + 'Resources/config/error-handler-whoops.php' => 'config/autoload/global.dev.php.dist', ], 'modular' => [ - 'Resources/config/error-handler-whoops.php' => 'config/autoload/development.local.php.dist', + 'Resources/config/error-handler-whoops.php' => 'config/autoload/global.dev.php.dist', ], 'minimal' => [ - 'Resources/config/error-handler-whoops.php' => 'config/autoload/development.local.php.dist', + 'Resources/config/error-handler-whoops.php' => 'config/autoload/global.dev.php.dist', ], ], ], diff --git a/test/MezzioInstallerTest/ProjectSandboxTrait.php b/test/MezzioInstallerTest/ProjectSandboxTrait.php index 25c034f..c03f81d 100644 --- a/test/MezzioInstallerTest/ProjectSandboxTrait.php +++ b/test/MezzioInstallerTest/ProjectSandboxTrait.php @@ -120,7 +120,7 @@ protected function enableDevelopmentMode(): void Assert::assertFileExists($target); $target = sprintf( - '%s%sconfig%sautoload%sdevelopment.local.php', + '%s%sconfig%sautoload%sglobal.dev.php', $this->projectRoot, DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR,