SVN handles case changes in filenames poorly on case-insensitive files systems.
--- /dev/null
+<?php
+
+namespace App;
+
+use Sober\Controller\Controller;
+
+class App extends Controller
+{
+ public function siteName()
+ {
+ return get_bloginfo('name');
+ }
+
+ public static function title()
+ {
+ if (is_home()) {
+ if ($home = get_option('page_for_posts', true)) {
+ return get_the_title($home);
+ }
+ return __('Latest Posts', 'sage');
+ }
+ if (is_archive()) {
+ return get_the_archive_title();
+ }
+ if (is_search()) {
+ return sprintf(__('Search Results for %s', 'sage'), get_search_query());
+ }
+ if (is_404()) {
+ return __('Not Found', 'sage');
+ }
+ return get_the_title();
+ }
+
+ // Get available languages from WPML
+ public function languages() {
+ return apply_filters( 'wpml_active_languages', NULL, 'skip_missing=0');
+ }
+}
--- /dev/null
+<?php
+
+namespace App;
+
+use Sober\Controller\Controller;
+
+class FrontPage extends Controller
+{
+
+}
+++ /dev/null
-<?php
-
-namespace App;
-
-use Sober\Controller\Controller;
-
-class App extends Controller
-{
- public function siteName()
- {
- return get_bloginfo('name');
- }
-
- public static function title()
- {
- if (is_home()) {
- if ($home = get_option('page_for_posts', true)) {
- return get_the_title($home);
- }
- return __('Latest Posts', 'sage');
- }
- if (is_archive()) {
- return get_the_archive_title();
- }
- if (is_search()) {
- return sprintf(__('Search Results for %s', 'sage'), get_search_query());
- }
- if (is_404()) {
- return __('Not Found', 'sage');
- }
- return get_the_title();
- }
-
- // Get available languages from WPML
- public function languages() {
- return apply_filters( 'wpml_active_languages', NULL, 'skip_missing=0');
- }
-}
+++ /dev/null
-<?php
-
-namespace App;
-
-use Sober\Controller\Controller;
-
-class FrontPage extends Controller
-{
-
-}
"composer/installers": "~1.0",
"illuminate/support": "~5.4",
"roots/sage-lib": "~9.0.0-beta.4",
- "soberwp/controller": "~9.0.0-beta.4",
+ "soberwp/controller": "~2.1.0",
"log1x/blade-svg-sage": "^1.0",
"roots/sage-woocommerce": "^1.0"
},