forked from cakemanager/cakephp-cakeadmin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from stosh15x/patch-1
Patch 1
- Loading branch information
Showing
1 changed file
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,36 @@ | ||
# Bakkerij/CakeAdmin plugin for CakePHP | ||
|
||
## Install CakePHP | ||
|
||
Note: This is only required if you do not already have a project started. | ||
|
||
``` | ||
$ composer self-update && composer create-project --prefer-dist cakephp/app {your new project name} | ||
``` | ||
|
||
## Installation | ||
|
||
You can install this plugin into your CakePHP application using [composer](http://getcomposer.org). | ||
|
||
The recommended way to install composer packages is: | ||
|
||
``` | ||
composer require Bakkerij/CakeAdmin | ||
$ composer require bakkerij/cakeadmin:dev-rewrite | ||
``` | ||
|
||
## Load Plugin | ||
|
||
``` | ||
$ bin/cake plugin load -b -r Bakkerij/CakeAdmin | ||
``` | ||
|
||
## Update Database Info | ||
|
||
Navigate to the new project's config/app.php and update your Datasources username, password, and database. | ||
|
||
## Load CakeAdmin Tables | ||
|
||
``` | ||
$ bin/cake migrations migrate -p Bakkerij/CakeAdmin | ||
``` | ||
|