Playground Core Module

Maintainers

👁 gregorybesson

Package info

github.com/gregorybesson/PlaygroundCore

pkg:composer/playground/core

Statistics

Installs: 11 117

Dependents: 18

Suggesters: 0

Stars: 1

Open Issues: 0

6.0.4 2023-08-19 14:27 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT aaf676bf92e8621dfe939186cfd239d30d5ef124

playgroundplayground-corelaminas

This package is auto-updated.

Last update: 2026-06-19 20:17:10 UTC


README

👁 SensioLabsInsight

👁 Develop Branch Build Status
👁 Scrutinizer Quality Score
👁 Coverage Status

👁 Latest Stable Version
👁 Total Downloads
👁 Latest Unstable Version
👁 License

This library contains the following features :

Each feature is explained in the wiki : https://github.com/gregorybesson/PlaygroundCore/wiki

Migration Laminas

  1. Màj bootstrap de /tests avec
 $config = ArrayUtils::merge($baseConfig, $testConfig);

 $smConfig = new ServiceManagerConfig($config);
 $serviceManager = new ServiceManager();
 $smConfig->configureServiceManager($serviceManager);

 $serviceManager->setService('ApplicationConfig', $config);
 $serviceManager->get('ModuleManager')->loadModules();
  1. Remplacer
public function setUp()

par

protected function setUp(): void
  1. Remplacer
public function tearDown()

par

protected function tearDown(): void
  1. Remplacer
\PHPUnit_Framework_TestCase

par

\PHPUnit\Framework\TestCase
  1. Les annotations PHPUNIT
  2. Remplacer
'MvcTranslator' => 'Laminas\Mvc\I18n\TranslatorServiceFactory',

par

'MvcTranslator' => 'Laminas\I18n\Translator\TranslatorServiceFactory',