https://github.com/centagon/build-core
Feature packed Laravel CMF for rapid website development.
https://github.com/centagon/build-core
cms laravel
Last synced: about 2 months ago
JSON representation
Feature packed Laravel CMF for rapid website development.
- Host: GitHub
- URL: https://github.com/centagon/build-core
- Owner: centagon
- License: mit
- Created: 2016-11-08T00:25:29.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-22T09:54:27.000Z (over 7 years ago)
- Last Synced: 2025-04-03T00:23:49.307Z (about 1 year ago)
- Topics: cms, laravel
- Language: JavaScript
- Homepage: https://centagon.github.io/build-core
- Size: 5.01 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Build Core for Laravel
[](https://packagist.org/packages/centagon/build-core)
[](https://travis-ci.org/centagon/build-core)
[](https://packagist.org/packages/centagon/build-core)
## 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](https://centagon.github.io/build-core/).
## Contributing
Have a bug? Please create an issue here on GitHub that conforms with
[our contributing guidelines](https://github.com/centagon/guidelines/blob/master/contributing.md).
You can also browse the [Help Wanted](https://github.com/centagon/primer/labels/help%20wanted)
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](mailto:developers@centagon.com). All security vulnerabilities will be
promptly addressed.
## License
This package is available under the [MIT license](https://github.com/centagon/primer/blob/master/LICENSE).
Copyright (c) 2016 Centagon, B.V.