Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/digital-blueprint/relay-maker-bundle
relay maker bundle
https://github.com/digital-blueprint/relay-maker-bundle
dbp-relay
Last synced: about 2 months ago
JSON representation
relay maker bundle
- Host: GitHub
- URL: https://github.com/digital-blueprint/relay-maker-bundle
- Owner: digital-blueprint
- License: agpl-3.0
- Created: 2023-04-12T11:23:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-22T03:22:45.000Z (8 months ago)
- Last Synced: 2024-05-01T21:16:58.891Z (8 months ago)
- Topics: dbp-relay
- Language: PHP
- Homepage: https://packagist.org/packages/dbp/relay-maker-bundle
- Size: 284 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# DbpRelayMakerBundle
[GitHub](https://github.com/digital-blueprint/relay-maker-bundle) |
[Packagist](https://packagist.org/packages/dbp/relay-maker-bundle)[![Test](https://github.com/digital-blueprint/relay-maker-bundle/actions/workflows/test.yml/badge.svg)](https://github.com/digital-blueprint/relay-maker-bundle/actions/workflows/test.yml)
The maker bundle bundle provides Symfony commands for creating commonly required
code constructs. It's inspired by the [Symfony
MakerBundle](https://symfony.com/bundles/SymfonyMakerBundle/current/index.html)
but focuses on Relay specific boilerplate code.## Creating a Bundle
Creates a new bundle in a `bundles` subdirectory and registers/installs it with the application.
```console
./bin/console dbp:relay:maker:make:bundle --help
Description:
Create a new bundleUsage:
dbp:relay:maker:make:bundle [options]Options:
--vendor=VENDOR Vendor
--category=CATEGORY Category [default: "relay"]
--unique-name=UNIQUE-NAME Unique Name
--friendly-name=FRIENDLY-NAME Friendly Name
--example-entity=EXAMPLE-ENTITY Example Entity
--dry-run Dry Run
--no-confirm Bypass all confirmation questions, for automation```