spryker-sdk / integrator
Integrator module
Installs: 523 548
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 15
Forks: 5
Open Issues: 0
Requires
- php: >=8.2
- composer-plugin-api: ^2.0.0
- ext-dom: *
- ext-json: *
- ext-simplexml: *
- aws/aws-sdk-php: ^3.257
- composer/composer: ^2.6.0
- czproject/git-php: ^4.1
- guzzlehttp/guzzle: ^7.4
- nikic/php-parser: ^5.1.0
- sebastian/diff: ^6.0.0
- spryker-sdk/utils: ^0.2.2
- symfony/console: ^6.0
- symfony/finder: ^6.0
- symfony/process: ^6.0
Requires (Dev)
- ext-zip: *
- phpstan/phpstan: ^1.0.0
- phpunit/phpunit: ^11.4.0
- spryker-sdk/manifest-test-data-provider: dev-master
- spryker/code-sniffer: ^0.17.19
- symfony/filesystem: ^6.0
This package is auto-updated.
Last update: 2024-11-07 12:07:48 UTC
README
Auto-migrate applications in regard to new core releases using module manifests.
Installation
This is a development only "require-dev" library:
composer require --dev spryker-sdk/integrator
Available options:
--format
- Define the format of the command output, example: json
Available commands
module:manifest:run
Running the integrator in basic mode. Unapplied manifests will be downloaded from the repo.
The command expects optional argument module-list
to be set. With the argument, manifests will be applied only for modules that were specified.
integrator module:manifest:run <Organization.moduleNameA,Organization.moduleNameB (not required)>
integrator:diff:generate
Running the integrator for specific release group. Unapplied manifests will be downloaded from the S3 bucket.
Result of manifest applying (git diff) will be uploaded to the same bucket.
The command expects required argument release-group-id
.
The command expects optional argument branch-to-compare
.
integrator release-group:manifest:run <release-group-id (required)> <branch-to-compare (optional)>
Please specify the next S3 credentials:
export INTEGRATOR_FILE_BUCKET_NAME=<>
export INTEGRATOR_FILE_BUCKET_CREDENTIALS_KEY=<>
export INTEGRATOR_FILE_BUCKET_CREDENTIALS_SECRET=<>
export INTEGRATOR_FILE_BUCKET_REGION=<>
Documentation
See Documentation.