*
         * @return string The bundle alias
         */
-    public function getAlias(): string {
+       public static function getAlias(): string {
                //With namespace
                if ($npos = strrpos(static::class, '\\')) {
                        //Set name pos
 
                //Return underscored lowercase bundle alias
                return Container::underscore(substr(static::class, $npos, $bpos));
-    }
+       }
+
+       /**
+        * Return bundle version
+        *
+        * @return string The bundle version
+        */
+       public static function getVersion(): string {
+               //Return version
+               return '0.2.5';
+       }
 }