Download the PHP package fschirinzi/laramote without Composer
On this page you can find all versions of the php package fschirinzi/laramote. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download fschirinzi/laramote
More information about fschirinzi/laramote
Files in fschirinzi/laramote
Package laramote
Short Description Laravel Remote
License MIT
Homepage https://github.com/fschirinzi/laramote
Informations about the package laramote
Remote for Laravel
LaraMote allows you to run tasks in Laravel from remote. This package is helpful if you are testing your frontend (SPA) application with Cypress that uses a Laravel application as backend.
At the moment, these features are implemented:
:white_check_mark: Artisan command
:white_check_mark: Command with parameters
:white_check_mark: Get Output
:white_check_mark: Login User
:white_check_mark: Custom key value
:white_check_mark: Custom key/table column
:white_check_mark: Custom model
:white_check_mark: Remember
:white_check_mark: Factory
:white_check_mark: Make/Create
:white_check_mark: Models
:white_check_mark: Name
:white_check_mark: States
:white_check_mark: Amount
:white_check_mark: Show hidden attributes
:white_check_mark: Override attributes
:white_check_mark: Model
:white_check_mark: Search with custom key value
:white_check_mark: Search with custom key/table column
:white_check_mark: Search with custom model
:white_check_mark: Get with limit
:white_check_mark: Load relationships
:white_check_mark: Show hidden attributes for model and relationships
TODO
- [ ] Make Commands working
- [ ] Make Tests
- [ ] Add wiki page with all endpoints and their parameters
- [ ] Support all class based factory features
Installation
Version | Supported Factories |
---|---|
v0.*, v1.* | Legacy Factories |
v2.* | Class based factories |
You can install the package via composer:
After installing LaraMote, you may publish its assets using the laramote:install
Artisan command:
Usage
LaraMote exposes the endpoints at the /laramote
URI.
By default, you will only be able to access this dashboard in the local
and testing
environment.
However, within your app/Providers/LaraMoteServiceProvider.php
file, there is a gate method
that controls access to the LaraMote endpoints in non-local environments.
You are free to modify this gate as needed to restrict access to your LaraMote endpoints:
Examples
You can import Insomnia_example_requests.json
into the Insomnia Rest-client to see some examples in action.
Upgrading
When upgrading to a new version of Laramote, you should re-publish LaraMote's assets:
To keep the assets up-to-date and avoid issues in future updates, you may add the laramote:publish command to the post-update-cmd scripts in your application's composer.json file:
Customizing Middleware
If needed, you can customize the middleware stack used by LaraMote routes by updating your
config/laramote.php
file. If you have not published LaraMote's configuration file, you may
do so using the vendor:publish Artisan command:
Once the configuration file has been published, you may edit LaraMote's middleware by tweaking the middleware configuration option within this file:
Testing
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 [email protected] instead of using the issue tracker.
Credits
- Francesco Schirinzi
- All Contributors
I used the Laravel/VaporUi package and their documentation as template to speed up the development of this package.
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.