{"id":35228633,"url":"https://github.com/pagemachine/typo3-phinx","last_synced_at":"2026-02-24T13:03:46.860Z","repository":{"id":41093866,"uuid":"318424361","full_name":"pagemachine/typo3-phinx","owner":"pagemachine","description":"Phinx integration for TYPO3","archived":false,"fork":false,"pushed_at":"2025-11-27T10:04:38.000Z","size":129,"stargazers_count":9,"open_issues_count":3,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-29T21:55:49.725Z","etag":null,"topics":["migration","phinx","phinx-migrations","typo3"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pagemachine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-12-04T06:25:27.000Z","updated_at":"2025-11-20T19:34:09.000Z","dependencies_parsed_at":"2025-01-31T13:28:14.737Z","dependency_job_id":"aa610977-3aa0-4831-b2c0-6d5f4b985a73","html_url":"https://github.com/pagemachine/typo3-phinx","commit_stats":{"total_commits":43,"total_committers":6,"mean_commits":7.166666666666667,"dds":0.3023255813953488,"last_synced_commit":"f5335246db458f65cfba62be8342957d2bcf90a0"},"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/pagemachine/typo3-phinx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pagemachine%2Ftypo3-phinx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pagemachine%2Ftypo3-phinx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pagemachine%2Ftypo3-phinx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pagemachine%2Ftypo3-phinx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pagemachine","download_url":"https://codeload.github.com/pagemachine/typo3-phinx/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pagemachine%2Ftypo3-phinx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29783615,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T10:45:18.109Z","status":"ssl_error","status_checked_at":"2026-02-24T10:45:09.911Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["migration","phinx","phinx-migrations","typo3"],"created_at":"2025-12-30T02:00:37.626Z","updated_at":"2026-02-24T13:03:46.855Z","avatar_url":"https://github.com/pagemachine.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Phinx integration for TYPO3 ![CI](https://github.com/pagemachine/typo3-phinx/workflows/CI/badge.svg)\n\nThis package provides a integration of the [Phinx](https://phinx.org) database migration tool for TYPO3.\n\nAll Phinx commands have been wrapped as `phinx:\u003ccommand\u003e` and can be executed using the TYPO3 CLI:\n\n```\n# Create a new migration\ntypo3 phinx:create\n\n# Migrate the database\ntypo3 phinx:migrate\n\n# Rollback the last or to a specific migration\ntypo3 phinx:rollback\n\n# Show migration status\ntypo3 phinx:status\n\n# Create a new database seeder\ntypo3 phinx:seed:create\n\n# Run database seeders\ntypo3 phinx:seed:run\n```\n\nNotice that these wrapper commands are executed by TYPO3, thus the full API like `DataHandler` can be used in migrations.\n\n## Migrations\n\nThe following paths are used for migrations:\n\n* `migrations/phinx` (Composer Mode)\n* `vendor/*/*/Migrations/Phinx`\n* `vendor/*/*/Classes/Migrations/Phinx`\n\nExamples to create a migration in a TYPO3 project:\n\n* `typo3 phinx:create --path packages/provider/Classes/Migrations/Phinx MyMigration`\n\n**Note**\n\nIf **one** `Migrations` directory exists already, you can omit `--path`.\nHowever, should multiple exist, you will receive a prompt and have to select\nthe desired location.\n\n## Seeds\n\nThe following paths are used for seeds:\n\n* `migrations/phinx/seeds` (Composer Mode)\n* `vendor/*/*/Migrations/Phinx/Seeds`\n* `vendor/*/*/Classes/Migrations/Phinx/Seeds`\n\nExamples to create a seed in a TYPO3 project:\n\n* `typo3 phinx:seed:create --path packages/provider/Classes/Migrations/Phinx/Seed MySeeder`\n\n**Note**\n\nIf **one** `Migrations/Seed` directory exists already, you can omit `--path`.\nHowever, should multiple exist, you will receive a prompt and have to select\nthe desired location.\n\n## Testing\n\nAll tests can be executed with the shipped Docker Compose definition:\n\n    docker compose run --rm app composer build\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpagemachine%2Ftypo3-phinx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpagemachine%2Ftypo3-phinx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpagemachine%2Ftypo3-phinx/lists"}