forked from cakephp/app
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Introduce con-material-admin-dashboard-template - Introduce clthck/asset-compress-improved plugin, pretty similar to Rails' asset pipeline - Introduce clthck/cakephp-jade plugin for Jade template engine usage - Use bower for open source front end package management - And a few more new stuff ;)
- Loading branch information
1 parent
fc9ce3b
commit 3d9f2c7
Showing
2,542 changed files
with
941,682 additions
and
252 deletions.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "webroot/assets/components" | ||
} |
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,4 +1,11 @@ | ||
/vendor/* | ||
/config/app.php | ||
/config/asset_compress.local.ini | ||
/tmp/* | ||
/logs/* | ||
/node_modules/* | ||
/.sass-cache/* | ||
/mailoutput/* | ||
/webroot/assets/components/* | ||
/webroot/.sass-cache/* | ||
/composer.lock |
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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "coolops-web-app", | ||
"description": "CoolOps web application skeleton (based on CakePHP 3)", | ||
"main": "", | ||
"authors": [ | ||
"clthck <joey.corleone92@yahoo.com>" | ||
], | ||
"license": "MIT", | ||
"moduleType": [], | ||
"homepage": "", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"jquery": "~2.1.4", | ||
"underscore": "", | ||
"materialize": "", | ||
"datatables": "~1.10.10", | ||
"datatables-buttons": "~1.1.1", | ||
"datatables-select": "~1.1.0", | ||
"blockUI": "blockui#*" | ||
}, | ||
"devDependencies": {} | ||
} |
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
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
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
; General settings control basic behavior of the plugin | ||
; | ||
; * cacheConfig - set to true to cache the parsed configuration data | ||
; so it doesn't get parsed on each request. | ||
; | ||
; * alwaysEnableController - Set to true to always enable the | ||
; AssetsController. Generally you will want to disable the controller | ||
; in production, as it could allow an attacker to request expensive | ||
; resources repeatedly. However, if you need the controller available | ||
; in production. You can enable this flag. | ||
; | ||
; * themes - Define which plugins are themes. Theme plugins will be scanned | ||
; for asset files when building targets containing themed files. | ||
; | ||
[General] | ||
cacheConfig = false | ||
alwaysEnableController = false | ||
|
||
[filter_PostCSS] | ||
options = '-u autoprefixer --autoprefixer.browsers "> 5%" -u cssnano' | ||
|
||
[filter_Uglifyjs] | ||
options = "-m" | ||
|
||
; Define an extension type. | ||
; | ||
; _filters, _targets and other keys prefixed with this value | ||
; are connected when the ini file is parsed. | ||
; | ||
; * cachePath - is where built files will be output | ||
; * timestamp - Set to true to add a timestamp to build files. | ||
; * paths - An array of paths where files used in builds can be found | ||
; Supports glob expressions. | ||
; * filters - A list of filters to be applied to all build files | ||
; using this extension. | ||
; * baseUrl - Set the base url this type of asset is served off of, good | ||
; for using with CDN's | ||
[js] | ||
baseUrl = | ||
timestamp = true | ||
paths[] = WEBROOT/assets/javascripts/**/* | ||
paths[] = WEBROOT/assets/components/**/* | ||
paths[] = WEBROOT/assets/components_premium/**/* | ||
cachePath = WEBROOT/js | ||
filters[] = Sprockets | ||
filters[] = Uglifyjs | ||
|
||
; Each target should have a section defining the files | ||
; everything after js_* is considered the build file. | ||
; all files included in the build are relative to the parent | ||
; paths key. | ||
; | ||
; targets can include their own filters. | ||
[application.js] | ||
files[] = application.js | ||
|
||
; Create the CSS extension | ||
[css] | ||
paths[] = WEBROOT/assets/stylesheets/**/* | ||
paths[] = WEBROOT/assets/components/**/* | ||
paths[] = WEBROOT/assets/components_premium/**/* | ||
cachePath = WEBROOT/css | ||
timestamp = true | ||
filters[] = ScssFilter | ||
filters[] = PostCSS | ||
|
||
[cake_default.css] | ||
files[] = base.css | ||
files[] = cake.css | ||
|
||
[application.css] | ||
files[] = nanoscroller.css | ||
files[] = font-awesome.min.css | ||
files[] = material-design-icons.min.css | ||
files[] = ionicons.min.css | ||
files[] = weather-icons.min.css | ||
files[] = application.scss |
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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
/** | ||
* Define custom global constants | ||
*/ | ||
|
||
/** | ||
* Define custom global functions | ||
*/ |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
/** | ||
* This is a custom template config FormHelper will be using. | ||
* | ||
* @link http://book.cakephp.org/3.0/en/views/helpers/form.html#customizing-the-templates-formhelper-uses | ||
*/ | ||
return [ | ||
// 'inputContainer' => '{{content}}', | ||
// 'inputContainerError' => '{{content}}{{error}}', | ||
]; |
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
Oops, something went wrong.