Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
colintucker committed Jan 3, 2018
2 parents 8c5acb2 + 87ad3ad commit cf1dc43
Show file tree
Hide file tree
Showing 14 changed files with 1,008 additions and 269 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017, Praxis Interactive.
Copyright (c) 2018, Praxis Interactive.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ Please see [contributing](CONTRIBUTING.md) for more information.
## Maintainers
[![Colin Tucker](https://avatars3.githubusercontent.com/u/1853705?s=144)](https://github.com/colintucker) | [![Praxis Interactive](https://avatars2.githubusercontent.com/u/1782612?s=144)](http://www.praxis.net.au)
[![Colin Tucker](https://avatars3.githubusercontent.com/u/1853705?s=144)](https://github.com/colintucker) | [![Praxis Interactive](https://avatars2.githubusercontent.com/u/1782612?s=144)](https://www.praxis.net.au)
---|---
[Colin Tucker](https://github.com/colintucker) | [Praxis Interactive](http://www.praxis.net.au)
[Colin Tucker](https://github.com/colintucker) | [Praxis Interactive](https://www.praxis.net.au)
## License
Expand Down
12 changes: 6 additions & 6 deletions app/_config.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<?php

/**
* SilverWare application configuration file.
* {app-title} application configuration file.
*
* PHP version >=5.6.0
*
* For full copyright and license information, please view the
* LICENSE.md file that was distributed with this source code.
*
* @package SilverWare\App
* @author Colin Tucker <colin@praxis.net.au>
* @copyright 2017 Praxis Interactive
* @license https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @link https://github.com/praxisnetau/silverware-app
* @package {app-namespace}
* @author {author-name} <{author-email}>
* @copyright {year} {author-company}
* @license {license-link} {license-name}
* @link {project-link}
*/

// Define Application Constants:
Expand Down
22 changes: 11 additions & 11 deletions app/code/Page.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<?php

/**
* This file is part of SilverWare.
* This file is part of {app-title}.
*
* PHP version >=5.6.0
*
* For full copyright and license information, please view the
* LICENSE.md file that was distributed with this source code.
*
* @package SilverWare\App
* @author Colin Tucker <colin@praxis.net.au>
* @copyright 2017 Praxis Interactive
* @license https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @link https://github.com/praxisnetau/silverware-app
* @package {app-namespace}
* @author {author-name} <{author-email}>
* @copyright {year} {author-company}
* @license {license-link} {license-name}
* @link {project-link}
*/

use SilverStripe\CMS\Model\SiteTree;
Expand All @@ -23,11 +23,11 @@
* As SilverStripe relies on having a global Page class available, this class is
* intentionally defined without a namespace in order to keep SilverStripe happy.
*
* @package SilverWare\App
* @author Colin Tucker <colin@praxis.net.au>
* @copyright 2017 Praxis Interactive
* @license https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @link https://github.com/praxisnetau/silverware-app
* @package {app-namespace}
* @author {author-name} <{author-email}>
* @copyright {year} {author-company}
* @license {license-link} {license-name}
* @link {project-link}
*/
class Page extends SiteTree
{
Expand Down
22 changes: 11 additions & 11 deletions app/code/PageController.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<?php

/**
* This file is part of SilverWare.
* This file is part of {app-title}.
*
* PHP version >=5.6.0
*
* For full copyright and license information, please view the
* LICENSE.md file that was distributed with this source code.
*
* @package SilverWare\App
* @author Colin Tucker <colin@praxis.net.au>
* @copyright 2017 Praxis Interactive
* @license https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @link https://github.com/praxisnetau/silverware-app
* @package {app-namespace}
* @author {author-name} <{author-email}>
* @copyright {year} {author-company}
* @license {license-link} {license-name}
* @link {project-link}
*/

use SilverStripe\CMS\Controllers\ContentController;
Expand All @@ -23,11 +23,11 @@
* As SilverStripe relies on having a global PageController class available, this class is
* intentionally defined without a namespace in order to keep SilverStripe happy.
*
* @package SilverWare\App
* @author Colin Tucker <colin@praxis.net.au>
* @copyright 2017 Praxis Interactive
* @license https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @link https://github.com/praxisnetau/silverware-app
* @package {app-namespace}
* @author {author-name} <{author-email}>
* @copyright {year} {author-company}
* @license {license-link} {license-name}
* @link {project-link}
*/
class PageController extends ContentController
{
Expand Down
18 changes: 11 additions & 7 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
{
"name": "Colin Tucker",
"email": "colin@praxis.net.au",
"url": "http://www.praxis.net.au"
"url": "https://www.praxis.net.au"
}
],
"repository": {
Expand All @@ -29,25 +29,29 @@
},
"scripts": {
"watch": "webpack --env.development --colors --watch",
"build": "webpack --env.production --colors --optimize-minimize"
"build": "webpack --env.production --colors --progress --optimize-minimize"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^7.1.6",
"autoprefixer": "^7.2.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.2.3",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"file-loader": "^1.1.6",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.9",
"resolve-url-loader": "^2.2.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"style-loader": "^0.19.1",
"svgo": "^1.0.3",
"svgo-loader": "^2.1.0",
"uglifyjs-webpack-plugin": "^1.1.5",
"url-loader": "^0.6.2",
"webpack": "^3.8.1"
"webpack": "^3.10.0"
},
"babel": {
"presets": [
Expand Down
3 changes: 3 additions & 0 deletions app/postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/* PostCSS Configuration
===================================================================================================================== */

module.exports = {
plugins: [
require('autoprefixer')
Expand Down
18 changes: 9 additions & 9 deletions app/src/Pages/HomePage.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<?php

/**
* This file is part of SilverWare.
* This file is part of {app-title}.
*
* PHP version >=5.6.0
*
* For full copyright and license information, please view the
* LICENSE.md file that was distributed with this source code.
*
* @package SilverWare\App\Pages
* @author Colin Tucker <colin@praxis.net.au>
* @copyright 2017 Praxis Interactive
* @license https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @link https://github.com/praxisnetau/silverware-app
* @author {author-name} <{author-email}>
* @copyright {year} {author-company}
* @license {license-link} {license-name}
* @link {project-link}
*/

namespace SilverWare\App\Pages;
Expand All @@ -27,10 +27,10 @@
* An extension of the page class for a home page.
*
* @package SilverWare\App\Pages
* @author Colin Tucker <colin@praxis.net.au>
* @copyright 2017 Praxis Interactive
* @license https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @link https://github.com/praxisnetau/silverware-app
* @author {author-name} <{author-email}>
* @copyright {year} {author-company}
* @license {license-link} {license-name}
* @link {project-link}
*/
class HomePage extends Page
{
Expand Down
18 changes: 9 additions & 9 deletions app/src/Pages/HomePageController.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<?php

/**
* This file is part of SilverWare.
* This file is part of {app-title}.
*
* PHP version >=5.6.0
*
* For full copyright and license information, please view the
* LICENSE.md file that was distributed with this source code.
*
* @package SilverWare\App\Pages
* @author Colin Tucker <colin@praxis.net.au>
* @copyright 2017 Praxis Interactive
* @license https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @link https://github.com/praxisnetau/silverware-app
* @author {author-name} <{author-email}>
* @copyright {year} {author-company}
* @license {license-link} {license-name}
* @link {project-link}
*/

namespace SilverWare\App\Pages;
Expand All @@ -23,10 +23,10 @@
* An extension of the page controller class for a home page controller.
*
* @package SilverWare\App\Pages
* @author Colin Tucker <colin@praxis.net.au>
* @copyright 2017 Praxis Interactive
* @license https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @link https://github.com/praxisnetau/silverware-app
* @author {author-name} <{author-email}>
* @copyright {year} {author-company}
* @license {license-link} {license-name}
* @link {project-link}
*/
class HomePageController extends PageController
{
Expand Down
Loading

0 comments on commit cf1dc43

Please sign in to comment.