bishopm / connexion
基于 Laravel 的教会成员和网站管理
dev-master
2019-08-23 10:52 UTC
Requires
- barryvdh/laravel-cors: 0.11.*
- beyondcode/laravel-comments: 1.*
- cartalyst/tags: 8.*
- consoletvs/charts: 6.*
- cviebrock/eloquent-sluggable: ^4.5
- felixkiss/uniquewith-validator: 3.*
- guzzlehttp/guzzle: 6.*
- illuminate/support: 5.*
- jeroennoten/laravel-adminlte: 1.*
- jrean/laravel-user-verification: 7.*
- laracasts/flash: 3.*
- laravel-notification-channels/webpush: 3.*
- laravel/socialite: 3.*
- laravelcollective/html: 5.*
- laravelium/feed: 3.*
- league/oauth2-client: ^1.4
- lithiumdev/laravel-tagcloud: 1.*
- nwidart/laravel-menus: 4.*
- plank/laravel-mediable: ^2.3
- spatie/laravel-activitylog: 3.*
- spatie/laravel-analytics: 3.*
- spatie/laravel-permission: 2.*
- tymon/jwt-auth: 1.*
Requires (Dev)
- phpunit/phpunit: ~6.0
- squizlabs/php_codesniffer: ^2.3
This package is auto-updated.
Last update: 2024-09-23 21:54:33 UTC
README
许可
MIT 许可证 (MIT)。请参阅 许可文件 获取更多信息。
安装
- 使用 Composer 安装 Laravel(例如:创建一个名为 connexion 的项目:
laravel new connexion
) - 切换到创建的项目文件夹,并修正 bootstrap 和 storage 文件夹的权限
sudo chmod -R 777 storage
sudo chmod -R 777 bootstrap
- 在继续之前,检查 Laravel 安装是否运行正常。
- 将 connexion 包添加到 composer.json 中(注意,最低稳定性设置仅适用于 tymon/jwt-auth 达到 v 1.0.0,目前它是一个 RC 版本)
"require": {
...
"bishopm/connexion": "dev-master"
},
"minimum-stability": "RC",
- 在项目文件夹中运行 composer update,这将拉取包及其依赖项
- 将数据库凭据添加到 .env 文件中
- 在 config/app.php 中 providers 列表的底部添加 Bishopm\Connexion\Providers\ConnexionServiceProvider::class(我们目前不使用 Laravel 的包自动发现,因为它会与一些包的路由产生问题)
- 在项目文件夹中,运行
php artisan connexion:install
,按照提示创建您的第一个管理员用户,然后您就可以开始使用了!