bushbaby / zf-oauth2-doctrine-mutatetablenames
Module for Laminas API Tools's Doctrine OAuth2 Server Adapter so table names can be configured
Installs: 67 764
Dependents: 1
Suggesters: 3
Security: 0
Stars: 2
Watchers: 5
Forks: 6
Open Issues: 0
Requires
- php: ^7.3 || ~8.0
- api-skeletons/oauth2-doctrine: ^4.0 || ^5.1
- laminas/laminas-modulemanager: ^2.10.1
- laminas/laminas-stdlib: ^2.7 || ^3.0
Requires (Dev)
- php-coveralls/php-coveralls: ^2.5
- phpunit/phpunit: ^9.2
- squizlabs/php_codesniffer: ^2.7 || ^3.6
README
About
^2.0 This module allows to configure the tables that the OAuth2 Doctrine Adapter for Laminas API Tools generates.
^1.0 This module allows to configure the tables that the Fork OAuth2 Doctrine Adapter for Laminas API Tools generates.
^0.0 This module allows to configure the tables that the OAuth2 Doctrine Adapter for Apigility generates.
Installation
Installation of this module uses composer. For composer documentation, please refer to getcomposer.org.
$ composer require bushbaby/zf-oauth2-doctrine-mutatetablenames
Add this module to your application's configuration:
'modules' => array( ... 'ZF\OAuth2\Doctrine\MutateTableNames', ),
Configuration
Copy config/oauth2.doctrine-orm.mutatetablenames.global.php.dist
to your autoload directory and rename to oauth2.doctrine-orm.mutatetablenames.global.php
Edit the appropriate values to customize table names. This module considers the usage of the configured doctrine event manager.
Migration
You should be able to review the changes with the following command
php public/index.php orm:schema-tool:update --dump-sql
When satisfied run this command to actually modify your database
php public/index.php orm:schema-tool:update --force
Now you should manually copy the relevant information to the new tables. Old tables are not removed unless you specify the '--complete' flag.
WARNING: Will find any difference between the doctrine managed entities and the schema found in the database, not just the ones regarding the table name changes!