carolpelu / blockly-automation
Provides Laravel integration for the low-code BlocklyAutomation editor
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 1
Open Issues: 1
Language:Blade
Requires
- php: ^7.4|^8.0
- illuminate/support: ^8.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^6.4|^7.0|^8.0|^9.0
README
Provides Laravel integration for the low-code BlocklyAutomation editor.
Technical Requirements
PHP ^7.4
Installation
You can install the package via composer:
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:
// app.php <?php use CarolPelu\BlocklyAutomation\ServiceProviders\BlocklyAutomationServiceProvider; return [ 'providers' => [ // 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
composer test
or if you want to run a specific Test
composer test-if <method/Class>
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email carol@neutrondev.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.