chatbox-inc / lumen
There is no license information available for the latest version (0.0.1) of this package.
0.0.1
2016-04-07 06:03 UTC
Requires
- laravel/lumen-framework: 5.2.*
- vlucas/phpdotenv: ~2.2
Requires (Dev)
- barryvdh/laravel-ide-helper: @stable
- fzaninotto/faker: ~1.4
- laravel/homestead: ^3.0
- phpunit/phpunit: ~4.0
- psy/psysh: @stable
This package is auto-updated.
Last update: 2024-10-13 19:50:45 UTC
README
$ composer create-project chatbox-inc/lumen myProject dev-master --prefer-dist
基本方針
REST APIアプリケーション構築スケルトンとして。
アプリケーションの本体はこちらに。
https://github.com/chatbox-inc/lumen-app
を参照。
Submodule化してもルートファイルが多くて何かと不便なので、Submodule対応は進めない方向で。
参照
デフォルトのConfigなど https://github.com/laravel/lumen-framework/tree/master/config
初期構築ファイルは https://github.com/laravel/lumen
Packages
- Lumen Framework
- psysh http://psysh.org/#install
- IDE HELPER
- homestead
- CORS 対応 barryvdh/laravel-cors
homestead
PHP7による環境構築。以下のコマンドでサーバ起動が可能
$ vendor/bin/homestead make
$ vagrant up
IDE HELPER
$ php artisan ide-helper:generate
$ php artisan ide-helper:meta
参考:http://qiita.com/mikakane/items/f763bb5738886cc532fe
barryvdh/laravel-cors
https://github.com/barryvdh/laravel-cors
CORS対応のためのモジュール
利用には以下の記述が必要
$app->register(\Barryvdh\Cors\LumenServiceProvider::class);
$app->config("cors");