Releases: phpMv/ubiquity-devtools
Releases · phpMv/ubiquity-devtools
1.3.1 release
Fixed
- Application root pb (public folder) with embedded web server
1.3.0 release
Updated
Models generation
- The regeneration of models preserves the code implemented on the existing models.
Application root (breaking change)
- For apache and nginX, root folder is set to public folder (for new projects since Ubiquity 2.4.5)
For an old project (created with a version prior to 2.4.5), you have to modify index.php and move the index.php and .htaccess files to the public folder.
<?php
define('DS', DIRECTORY_SEPARATOR);
//Updated with index.php in public folder
define('ROOT', __DIR__ . DS . '../app' . DS);
$config = include_once ROOT . 'config/config.php';
require_once ROOT . './../vendor/autoload.php';
require_once ROOT . 'config/services.php';
\Ubiquity\controllers\Startup::run($config);1.2.28 release
Updated
ubiquity-debugintegration
1.2.27 release
Fixed
info::routescommand bug => no routes displayed
1.2.26 release
Fixed
- crud & rest commands bug
Call to a member function asAnnotation on null
BaseControllerCreator line 58
1.2.25 release
Fixed
- Bug on new class command with parent class (inheritance)
1.2.24 release
Added
newClasscommand for creating a new class
1.2.23 release
Updated
- replace
livereloadxwithlivereload
livereloadx has not been updated for 2 years, and does not manage file operations (add, delete).
- add livereload with default php server
Starts php web server and livereload (on 35729 port)
Ubiquity serveStarts php web server without livereload
Ubiquity serve -n1.2.22 release
Added
live-reloadcommand for dev server
1.2.21 release
Added
newKeycommand for generating the encryption key with Ubiquity-security