https://github.com/tynael/laravel-blockly-automation
A Laravel package for BlocklyAutomation
https://github.com/tynael/laravel-blockly-automation
blockly laravel php
Last synced: 2 months ago
JSON representation
A Laravel package for BlocklyAutomation
- Host: GitHub
- URL: https://github.com/tynael/laravel-blockly-automation
- Owner: Tynael
- License: mit
- Created: 2022-05-10T08:27:06.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-25T07:10:46.000Z (almost 3 years ago)
- Last Synced: 2024-04-17T23:21:31.308Z (about 1 year ago)
- Topics: blockly, laravel, php
- Language: Blade
- Homepage:
- Size: 1.25 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# BlocklyAutomation package for Laravel
[](https://packagist.org/packages/carolpelu/blockly-automation)
[](https://packagist.org/packages/carolpelu/blockly-automation)Provides Laravel integration for the low-code BlocklyAutomation editor.

## Technical Requirements
PHP ^7.4
## Installation
You can install the package via composer:
```bash
composer require carolpelu/blockly-automation
```## Setup
### Laravel 6+
For projects using a Laravel version 6 or later, this package is being autoloaded and you can use it straight away.
### Laravel 5.8 or lower
For projects using a Laravel version 5.8 or lower, you have to manually load this package's service in order to use it.
To do that, go to your projects' `app.php` file and then add the `BlocklyAutomationServiceProvider::class` as a Provider:
```php
// app.php[
// other Providers
BlocklyAutomationServiceProvider::class
]
]
```## Usage
This package injects a `/BlocklyAutomation` web route into your application.
Just access `yoursite.com/BlocklyAutomation` to use this package.
☢️ WARNING ☢️
This route is a public route! Use it with caution!
### Testing
You can run the tests by using
```bash
composer test
```or if you want to run a specific Test
```bash
composer test-if
```### Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
### Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## Credits
- [Carol-Theodor Pelu](https://github.com/tynael)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.