Skip to content

Releases: phpMv/ubiquity-devtools

1.3.1 release

08 Jul 00:00

Choose a tag to compare

Fixed

  • Application root pb (public folder) with embedded web server

1.3.0 release

14 Jun 23:56

Choose a tag to compare

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

24 Apr 14:34

Choose a tag to compare

Updated

  • ubiquity-debug integration

1.2.27 release

29 Mar 01:03

Choose a tag to compare

Fixed

  • info::routes command bug => no routes displayed

1.2.26 release

09 Mar 23:18

Choose a tag to compare

Fixed

  • crud & rest commands bug

Call to a member function asAnnotation on null
BaseControllerCreator line 58

1.2.25 release

15 Feb 01:44

Choose a tag to compare

Fixed

  • Bug on new class command with parent class (inheritance)

1.2.24 release

08 Feb 00:01

Choose a tag to compare

Added

  • newClass command for creating a new class

1.2.23 release

06 Feb 00:35

Choose a tag to compare

Updated

  • replace livereloadx with livereload

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 serve

Starts php web server without livereload

Ubiquity serve -n

1.2.22 release

05 Feb 11:23

Choose a tag to compare

Added

  • live-reload command for dev server

1.2.21 release

17 Jan 14:52
b888696

Choose a tag to compare

Added

  • newKey command for generating the encryption key with Ubiquity-security