bishopm / connexion
Laravel-based church membership and website administration
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: 2025-02-23 22:47:09 UTC
README
License
The MIT License (MIT). Please see License File for more information.
Installation
- Install laravel using Composer (eg: to create a project named connexion:
laravel new connexion
) - Change to the project folder created and fix permissions on bootstrap and storage folders:
sudo chmod -R 777 storage
sudo chmod -R 777 bootstrap
- Check the Laravel installation is running properly before proceeding.
- Add the connexion package to composer.json (also, note the minimum-stability setting is just until tymon/jwt-auth reaches v 1.0.0 - at the moment it is a RC:
"require": {
...
"bishopm/connexion": "dev-master"
},
"minimum-stability": "RC",
- Run composer update in the project folder, which will pull in the package and its dependencies
- Add your database credentials to .env
- Add Bishopm\Connexion\Providers\ConnexionServiceProvider::class at the bottom of the list of providers in config/app.php (We're not using Laravel's package auto-discovery at the moment because it creates problems with some of the package routes)
- In the project folder, run
php artisan connexion:install
follow the prompts to create your first admin user, and you're good to go!