Skip to content

Commit

Permalink
finalize entity migrator
Browse files Browse the repository at this point in the history
  • Loading branch information
mpoiriert committed Oct 25, 2023
1 parent fe03773 commit f8ac548
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/after_spliting_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- console
- core
- doctrine-extra
- entity-migrator
- fixer
- framework-extra-bundle
- log
Expand Down
8 changes: 8 additions & 0 deletions packages/entity-migrator/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/vendor/
/.idea/
composer.lock

###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
###< phpunit/phpunit ###
35 changes: 35 additions & 0 deletions packages/entity-migrator/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "draw/entity-migrator",
"license": "MIT",
"type": "library",
"keywords": ["draw", "migration", "symfony", "doctrine"],
"authors": [
{
"name": "Martin Poirier Theoret",
"email": "[email protected]"
}
],
"require": {
"draw/messenger": "^0.10",
"symfony/console": "^5.4.3",
"symfony/event-dispatcher": "^5.4.3",
"symfony/messenger": "^5.4.3",
"symfony/workflow": "^5.4.3"
},
"require-dev": {
"draw/tester": "^0.10",
"phpunit/phpunit": "^9.0 || ^10.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Draw\\Component\\EntityMigrator\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "0.10-dev"
}
}
}
9 changes: 9 additions & 0 deletions packages/entity-migrator/phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.0/phpunit.xsd">
<testsuites>
<testsuite name="Main">
<directory>./Tests</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit f8ac548

Please sign in to comment.