GitXplorerGitXplorer
m

cakefest2022

public
2 stars
0 forks
3 issues

Commits

List of commits on branch master.
Unverified
ab4bf12bce8450fadf43d5cb5a762497148267a1

Clean up migrations

mmarkstory committed 2 years ago
Unverified
beb1a5721444c6fef813890ed3b0891021849bbd

Merge remote-tracking branch 'origin/master'

mmarkstory committed 2 years ago
Unverified
564ce04bf1aaccde4738244d2b6aa0b969ad4131

Fix phpcs

mmarkstory committed 2 years ago
Verified
04fede61899c1a734e804b09e21ae073f7aa9a65

Merge pull request #7 from markstory/dependabot/github_actions/actions/stale-6

mmarkstory committed 2 years ago
Verified
b9bd30c6774fd6e1101fc652f4e7750a5bc14b3d

Merge pull request #8 from markstory/dependabot/composer/cakephp/migrations-3.5.3

mmarkstory committed 2 years ago
Verified
e8e4ab1572e216d7673c3db07a5acdd7ab037585

Merge pull request #9 from markstory/dependabot/composer/cakephp/bake-2.8.0

mmarkstory committed 2 years ago

README

The README file for this repository.

CakePHP Application Skeleton

Build Status Total Downloads PHPStan

A skeleton for creating applications with CakePHP 4.x.

The framework source code can be found here: cakephp/cakephp.

Installation

  1. Download Composer or update composer self-update.
  2. Run php composer.phar create-project --prefer-dist cakephp/app [app_name].

If Composer is installed globally, run

composer create-project --prefer-dist cakephp/app

In case you want to use a custom app dir name (e.g. /myapp/):

composer create-project --prefer-dist cakephp/app myapp

You can now either use your machine's webserver to view the default home page, or start up the built-in webserver with:

bin/cake server -p 8765

Then visit http://localhost:8765 to see the welcome page.

Update

Since this skeleton is a starting point for your application and various files would have been modified as per your needs, there isn't a way to provide automated upgrades, so you have to do any updates manually.

Configuration

Read and edit the environment specific config/app_local.php and setup the 'Datasources' and any other configuration relevant for your application. Other environment agnostic settings can be changed in config/app.php.

Layout

The app skeleton uses Milligram (v1.3) minimalist CSS framework by default. You can, however, replace it with any other library or custom styles.