phalconfans / helpers
PhalconFans Helpers is a helper function collection for phalcon project.
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
pkg:composer/phalconfans/helpers
Requires
- php: >=5.2.1
- ext-phalcon: >=2.0
- vlucas/phpdotenv: ^2.4
This package is not auto-updated.
Last update: 2025-10-12 08:40:17 UTC
README
PhalconFans/Helpers
This package will add the helper functions to your Phalcon application. Install
Run:
composer require phalconfans/helpers
or modify Composer.json
"phalconfans/helpers": "~0.0.6"
than composer update
Edit your bootrap_cli.php or bootstrap_web.php, like this
use Dotenv\Dotenv;
use PhalconFans\Helpers;
$di['env'] = function () {
return new Dotenv(BASE_PATH);
};
$di['env']->load();
so , you can global use env() to manage your env for your config.
Copyright
This project is open source software licensed under the GPLv3 License. See the LICENSE file for more.
© 2017-3017, PhalconFans Team