Skip to content

Releases: alphazframework/alphaz

update

26 Aug 07:06
b981897
Compare
Choose a tag to compare
2.0.3

Update Config.php

update

19 Aug 06:45
Compare
Choose a tag to compare
2.0.2

update

update

12 Aug 06:41
Compare
Choose a tag to compare

2.0

12 Aug 05:46
Compare
Choose a tag to compare
2.0
Update

update

06 Aug 02:46
6ac21ec
Compare
Choose a tag to compare

Adding CLI Environment

How to upgrade??

Update core file

Run composer update

Update Zest file

You just need add one file in this update
Download this file https://github.com/Softhub99/Zest/blob/master/Zest
and add to the root directory

If you want update the version correct it form
https://github.com/Softhub99/Zest/blob/master/Config/Config.php#L22

UPDATE: fix spell mistake

04 Aug 02:29
Compare
Choose a tag to compare

Just run
composer update```` and you just need to replace ````AUTO_CSRF_VARIFIED```` with AUTO_CSRF_VERIFIED```

update example modal

31 Jul 11:17
6ae3cb4
Compare
Choose a tag to compare

update example modal you dont need update any file

Adding SMTP Configuration

30 Jul 11:52
ad2a2f6
Compare
Choose a tag to compare

How you can update
its simple just replace config.php file or add these in your config.php file root/Config/Config.php

    /**
     * SMPT Host
     *
     * @var string
     */
    const SMPT_HOST = "your-smtp-host";
    /**
     * SMPT User
     *
     * @var string
     */    
    const SMPT_USER = "your-smtp-user";
    /**
     * SMPT Pass
     *
     * @var string
     */    
    const SMPT_PASS = "your-smtp-pass";
    /**
     * SMPT Port
     *
     * @var int
     */    
    const SMPT_PORT = 111;

thank you so much if you have any issue open in github thank

Add routing cache

28 Jul 11:38
6c9578b
Compare
Choose a tag to compare

How to update?

  • Replace Config.php path: projectroot/Config/Config.php
  • Replace system.php path: projectroot/system.php
  • Add $router->cacheRouters(); Above $router->dispatch($_SERVER['QUERY_STRING']); in your routes.php

Update

27 Jul 13:16
4b55806
Compare
Choose a tag to compare
Merge pull request #8 from Softhub99/analysis-z4ObJP

Apply fixes from StyleCI