1. Go to this page and download the library: Download paliari/php-setup library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
paliari / php-setup example snippets
namespace Config;
use Paliari\PhpSetup\Config\SettingsInterface;
/**
* Class Settings
*
* @package Config
*/
class Settings implements SettingsInterface
{
public static function get(): array
{
return [
'settings' => [
'displayErrorDetails' => getenv('APP_ENV') === 'dev',
'addContentLengthHeader' => false,
],
];
}
}
namespace Config;
use Paliari\I18n;
use Paliari\PhpSetup\Db\AbstractSetup;
class DbSetup extends AbstractSetup
{
protected static function addCustomTypes(): void
{
// TODO: Implement addCustomTypes() method.
}
protected static function addPathsI18n(): void
{
I18n::instance()->addLocalesPath(ROOT_APP . '/db/locales');
}
public static function getProxyDir(): string
{
return ROOT_APP . '/db/Proxies';
}
public static function getModelsDir(): string
{
return ROOT_APP . '/db/models';
}
}
namespace Repository;
use Paliari\PhpSetup\Db\AbstractRepository;
use Pessoa;
class PessoaRepository extends AbstractRepository
{
protected static function modelName(): string
{
return Pessoa::className();
}
}
namespace Config;
use Paliari\PhpSetup\Config\AppSetupInterface;
use Config\Providers\Registers;
use Db\Session\SessionHandler;
use Config\Routes\Router;
use Slim\App;
class AppSetup implements AppSetupInterface
{
/**
* @var App
*/
protected static $_app;
/**
* @return App
*/
public static function app(): App
{
if (!static::$_app) {
static::$_app = new App(Settings::get());
static::setup(static::$_app);
}
return static::$_app;
}
protected static function setup(App $app): void
{
DbSetup::configure(DbSettings::get());
Registers::register($app->getContainer());
Router::register($app);
}
}
namespace Config\Providers;
use Auth\Auth;
use Psr\Container\ContainerInterface;
use Paliari\PhpSetup\Config\Providers\ProvidableInterface;
abstract class AuthProvider implements ProvidableInterface
{
const NAME = 'auth';
public static function register(ContainerInterface $container, string $name): void
{
$container[$name] = function () {
return Auth::i();
};
}
}
namespace Config\Providers;
use Paliari\PhpSetup\Config\Providers\RegistersInterface;
use Psr\Container\ContainerInterface;
abstract class Registers implements RegistersInterface
{
public static function register(ContainerInterface $container): void
{
AuthProvider::register($container, AuthProvider::NAME);
ViewProvider::register($container, ViewProvider::NAME);
CsrfProvider::register($container, CsrfProvider::NAME);
NotFoundProvider::register($container, NotFoundProvider::NAME);
ErrorProvider::register($container, ErrorProvider::NAME);
PhpErrorProvider::register($container, PhpErrorProvider::NAME);
}
}
namespace Config\Routes;
use Paliari\PhpSetup\Config\Routes\RouterInterface;
use Middleware\AuthMiddleware;
use Middleware\CsrfMiddleware;
use Controllers\Home;
use Slim\App;
class Router implements RouterInterface
{
public static function register(App $app): void
{
AuthRoute::routes($app);
static::registerAuthMiddleware($app);
static::registerGlobalMiddlewares($app);
}
private static function registerAuthMiddleware(App $app): void
{
$app->group('', function (App $app) {
LogsRoute::routes($app);
$app->get('/', Home::class . ':index');
})
->add(new OwnerMiddleware($app->getContainer()))
->add(new AuthMiddleware($app->getContainer()))
;
}
private static function registerGlobalMiddlewares(App $app): void
{
$app->add(new CsrfMiddleware($app->getContainer()));
$app->add($app->getContainer()->get('csrf'));
}
}
namespace Config\Routes;
use Controllers\Auth\Auth;
use Middleware\GuestMiddleware;
use Paliari\PhpSetup\Config\Routes\RoutableInterface;
use Slim\App;
class AuthRoute implements RoutableInterface
{
public static function routes(App $app): void
{
$app->group('/auth', function (App $app) {
$app->group('/', function (App $app) {
$app->get('login', Auth::class . ':login');
})->add(new GuestMiddleware($app->getContainer()))
;
$app->get('/home', Auth::class . ':home');
$app->get('/logout', Auth::class . ':logout');
});
}
}
namespace Config;
use Paliari\Utils\Url,
Paliari\Utils\A;
/**
* Class Envs
*
* @property-read string APP_ENV
* @property-read string BASE_URL
* @property-read string DB_DRIVER
* @property-read string DB_HOST
* @property-read string DB_PORT
* @property-read string DB_NAME
* @property-read string DB_USER
* @property-read string DB_PWD
*/
class Envs
{
protected static $_instance;
/**
* @return static
*/
public static function i()
{
return static::$_instance = static::$_instance ?: new static();
}
public function __get($key)
{
return A::get($_ENV, $key);
}
public function host()
{
$u = Url::parse($this->BASE_URL);
return "$u->scheme://$u->host";
}
}
`bash
composer
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.