https://github.com/turbolabit/symfony-bundle-builder
The quickest way to startup a new Symfony Bundle
https://github.com/turbolabit/symfony-bundle-builder
Last synced: 5 months ago
JSON representation
The quickest way to startup a new Symfony Bundle
- Host: GitHub
- URL: https://github.com/turbolabit/symfony-bundle-builder
- Owner: TurboLabIt
- Created: 2024-02-25T11:27:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-12T07:58:35.000Z (almost 2 years ago)
- Last Synced: 2024-08-13T07:57:50.894Z (almost 2 years ago)
- Language: Shell
- Size: 64.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# symfony-bundle-builder
The quickest way to startup a new Symfony Bundle
## How to...?
From a new, empty folder:
````shell
sudo apt update && sudo apt install curl -y && curl -s https://raw.githubusercontent.com/TurboLabIt/symfony-bundle-builder/main/start.sh?$(date +%s) | bash
````
## Non-interactive (unattended) execution example
````shell
echo '8.3' > .php-version
export SBB_BUNDLE_VENDOR_NAME=TurboLabIt
export SBB_BUNDLE_PACKAGE_NAME=Encryptor
export SBB_DEVELOPER_NAME=Zane
export SBB_DEVELOPER_EMAIL=info@turbolab.it
sudo apt update && sudo apt install curl -y
curl -s https://raw.githubusercontent.com/TurboLabIt/symfony-bundle-builder/main/start.sh?$(date +%s) | bash
````