centagon / build-core
The core of the Build CMS.
Installs: 289
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: >=5.6.4
- intervention/image: ^2.3
- lavary/laravel-menu: ^1.6
- wikimedia/composer-merge-plugin: ^1.3
Requires (Dev)
- graham-campbell/testbench: 3.2.0
- phpunit/phpunit: ^4.8|^5.0
- dev-master
- 3.5.3
- 3.5.2
- 3.5.1
- 1.1.9
- 1.1.8
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.0.2
- 1.0.1
- dev-fix-sidebar-array-bug
- dev-feature/vuex-app-wrapper
- dev-hotfix/support_sidebar_arrays
- dev-release/thunderbird
- dev-hotfix/cache-flushing-languages
- dev-feature/get-assets-by-container
- dev-hotfix/allow-local-superadmins-access-to-superadmin-resources
- dev-hotfix/175904097-entering-an-empty-page-meta-key-500-error
- dev-hotfix/fixes-language-migrations
- dev-feature/add-warning-color-to-panels
- dev-bugfix/widget-tag-clearing
- dev-hotfix/172577275-unwanted-redirect-when-clicking-root-menu-items
- dev-feature/adds-sidebar-to-navigation-link
- dev-develop
- dev-bugfix/fixes-filesize-validation
- dev-feature/adds-image-filesize-validation
- dev-feature/supports-laravel-55-release
- dev-bugfix/add-dark-label-styling-for-dark-layouts
- dev-feature/travis-build-assets
This package is auto-updated.
Last update: 2024-10-29 04:58:51 UTC
README
Getting started
Add Build Core to your composer.json file:
"require": {
"centagon/build-core": "^1.0"
}
Use composer to install this package.
$ composer update
Registering the package
'providers' => [
// ...
Build\Core\ServiceProvider::class
]
Updating the Application Kernel
Open your app/Http/Kernel.php
file and add the following trait to the top of the class:
class Kernel extends HttpKernel
{
use \Build\Core\Http\Kernel;
// ...
}
Using the Build User instead of the Laravel user.
Open the config/auth.php
file and replace the user model with Build\Core\Eloquent\Models\User
like so:
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => Build\Core\Eloquent\Models\User::class,
],
],
Documentation
Documentation can be found here.
Contributing
Have a bug? Please create an issue here on GitHub that conforms with our contributing guidelines. You can also browse the Help Wanted tag in our issue tracker to find things to do.
Security
If you discover a security vulnerability within this package, please send an e-mail directly to the Centagon Developers at developers@centagon.com. All security vulnerabilities will be promptly addressed.
License
This package is available under the MIT license.
Copyright (c) 2016 Centagon, B.V.