Package Data | |
---|---|
Maintainer Username: | Runar1 |
Package Create Date: | 2017-05-02 |
Package Last Update: | 2018-07-06 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 03:02:35 |
Package Statistics | |
---|---|
Total Downloads: | 908 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 14 |
Total Watchers: | 4 |
Total Forks: | 2 |
Total Open Issues: | 3 |
A package for running lumen on AWS Lambda.
Installation using composer:
composer require runar1/lumen-lambda
Add the service provider in bootstrap/app.php
:
$app->register(Runar1\Lambda\LambdaServiceProvider::class);
The project comes with a prebuilt php-cgi-7.0.16. Feel free to build your own.
php artisan lambda:deploy {name}
to deploy your app.vendor/runar1/lumen-lambda/index.handler
For more indepth tips, read this excellent blog post: https://cwhite.me/hosting-a-laravel-application-on-aws-lambda/.
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
The MIT License (MIT)
Copyright (c) 2017 Runar Heggset
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.