ariga/atlas-provider-doctrine
Composer 安装命令:
composer require ariga/atlas-provider-doctrine
包简介
Atlas provider for PHP doctrine ORM
README 文档
README
Use Atlas with Doctrine to manage your database schema as code. By connecting your Doctrine models to Atlas, you can define and edit your schema directly in PHP. Atlas will then automatically plan and apply database schema migrations for you, eliminating the need to write migrations manually.
Atlas brings automated CI/CD workflows to your database, along with built-in support for testing, linting, schema drift detection, and schema monitoring. It also allows you to extend Doctrine with advanced database objects such as triggers, row-level security, and custom functions that are not supported natively.
Use-cases
- Declarative migrations - Use the Terraform-like
atlas schema apply --env doctrinecommand to apply your Doctrine schema to the database. - Automatic migration planning - Use
atlas migrate diff --env doctrineto automatically plan database schema changes and generate a migration from the current database version to the desired version defined by your Doctrine schema.
Requirements
- DBAL -
composer require doctrine/dbal:^4
Installation
Install Atlas from macOS or Linux by running:
curl -sSf https://atlasgo.sh | sh
See atlasgo.io for more installation options.
Install the provider by running:
composer require ariga/atlas-provider-doctrine:^4
Doctrine Console Command
If all of your Doctrine entities exist under single directory, you can add the atlas-provider command to the Doctrine Console file:
#!/usr/bin/env php <?php use Doctrine\ORM\Tools\Console\ConsoleRunner; use Doctrine\ORM\Tools\Console\EntityManagerProvider\SingleManagerProvider; require 'bootstrap.php'; + require "vendor/ariga/atlas-provider-doctrine/src/Command.php"; ConsoleRunner::run( new SingleManagerProvider($entityManager), + [new AtlasCommand()] );
Then in your project directory, create a new file named atlas.hcl with the following contents:
data "external_schema" "doctrine" { program = [ "php", "bin/doctrine", // path to your Doctrine Console file "atlas:schema", "--path", "./path/to/entities", "--dialect", "mysql" // mariadb | postgres | sqlite | sqlserver ] } env "doctrine" { src = data.external_schema.doctrine.url dev = "docker://mysql/8/dev" migration { dir = "file://migrations" } format { migrate { diff = "{{ sql . \" \" }}" } } }
As Symfony Bundle
If you are using a Symfony project, you can use the provider as a Symfony bundle.
add the following bundle to your config/bundles.php file:
<?php
require "vendor/autoload.php";
return [
...
+ Ariga\AtlasDoctrineBundle::class => ['all' => true],
];
Then in your project directory, create a new file named atlas.hcl with the following contents:
data "external_schema" "doctrine" { program = [ "php", "bin/console", "atlas:schema" ] } env "doctrine" { src = data.external_schema.doctrine.url dev = "docker://mysql/8/dev" migration { dir = "file://migrations" } format { migrate { diff = "{{ sql . \" \" }}" } } }
As PHP Script
If you have multiple folders with Doctrine entities, you might want to use the provider as a PHP script.
create a new file named atlas.php with the following contents:
<?php require "vendor/autoload.php"; require "vendor/ariga/atlas-provider-doctrine/src/LoadEntities.php"; // `DumpDDL` accepts an array of paths to your Doctrine entities and the database dialect(mysql | mariadb | postgres | sqlite | sqlserver). print (DumpDDL(["./path/to/first/entities", "./path/to/more/entities"], "mysql"));
Then in your project directory, create a new file named atlas.hcl with the following contents:
data "external_schema" "doctrine" { program = [ "php", "atlas.php" ] } env "doctrine" { src = data.external_schema.doctrine.url dev = "docker://mysql/8/dev" migration { dir = "file://migrations" } format { migrate { diff = "{{ sql . \" \" }}" } } }
Usage
Once you have the provider installed, you can use it to apply your Doctrine schema to the database:
Apply
You can use the atlas schema apply command to plan and apply a migration of your database to your current Doctrine schema.
This works by inspecting the target database and comparing it to the Doctrine schema and creating a migration plan.
Atlas will prompt you to confirm the migration plan before applying it to the database.
atlas schema apply --env doctrine -u "mysql://root:password@localhost:3306/mydb"
Where the -u flag accepts the URL to the
target database.
Diff
Atlas supports a version migration
workflow, where each change to the database is versioned and recorded in a migration file. You can use the
atlas migrate diff command to automatically generate a migration file that will migrate the database
from its latest revision to the current Doctrine schema.
atlas migrate diff --env doctrine
Supported Databases
The provider supports the following databases:
- MySQL
- MariaDB
- PostgreSQL
- SQLite
- Microsoft SQL Server
Issues
Please report any issues or feature requests in the ariga/atlas repository.
License
This project is licensed under the Apache License 2.0.
ariga/atlas-provider-doctrine 适用场景与选型建议
ariga/atlas-provider-doctrine 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 411 次下载、GitHub Stars 达 2, 最近一次更新时间为 2024 年 03 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 ariga/atlas-provider-doctrine 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ariga/atlas-provider-doctrine 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 411
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2024-03-04