Skip to content
This repository has been archived by the owner on Apr 17, 2019. It is now read-only.

Commit

Permalink
fix for cubex 2.1.0. set package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
TomK committed Feb 19, 2015
1 parent 9ab7a27 commit 1f98eb7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "cubex/application-skeleton",
"name": "cubex/application-skeleton",
"description": "Cubex Project Application Skeleton",
"homepage": "http://cubex.io",
"license": "BSD-3-Clause",
"authors": [
"homepage": "http://cubex.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Brooke Bryan",
"email": "[email protected]",
"name": "Brooke Bryan",
"email": "[email protected]",
"homepage": "http://www.bajb.net"
}
],
"require": {
"cubex/framework": "*",
"packaged/dispatch": "*",
"stack/builder": "*"
"require": {
"cubex/framework": "~2.1",
"packaged/dispatch": "~1.0",
"stack/builder": "~1.0"
},
"require-dev": {
"satooshi/php-coveralls": "*",
"phpunit/phpunit": "4.2"
"satooshi/php-coveralls": "~0.6",
"phpunit/phpunit": "~4.5"
},
"autoload": {
"autoload": {
"psr-4": {
"Skeleton\\": "src/"
}
Expand Down
3 changes: 1 addition & 2 deletions src/Application/Controllers/WelcomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ class WelcomeController extends LayoutController{
/**
*
*/
public function init()
protected function _init()
{
$this->am = AssetManager::aliasType('src');
$this->am->requireCss('css/welcome');
parent::init();
}

/**
Expand Down

0 comments on commit 1f98eb7

Please sign in to comment.