Download the PHP package milesq/nyxt without Composer

On this page you can find all versions of the php package milesq/nyxt. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package nyxt

Nyxt - modern & simple PHP framework

Installation

You use this framework by composer

composer require milesq/nyxt

Out of the box

What is included in this package?

Using

Check our examples/ directory

Before start

Nyxt have a small boilerplate. You must redirect all requests (except request which starts from /public) to index.php

Example configuration for Apache

Now you can simply run framework from index.php

Then create a folder named controllers. This directory is the place for your routes. Inside controller files you must declare class called Handler which extends from \Nyxt\Controller. This class should have public handle function which will be invoked when someone sends a request to your endpoint.

Example of handler

Routing

Routing is based on file system and inspired by Nuxt

There is a few rules you need to know to create routes

For the following file structure, the following paths will be available:

Check examples/routing for more tips

Templates

Inside templates/directory you can place twig templates, nextly you can render them inside controller by $this->render($name, $parametersAsAssocTable)

Important Remember to set environment variable NYXT_MODE to production on deploy server. In development mode, cache is not used.

You can set template params through for a few ways E.g.

Validation

Every handler can declare validate method. The method will be invoked with $v parameter which is an instance of \Rakit\Validation\Validator. Check out https://github.com/rakit/validation

The validate method must tell Next if the validation passed via return boolean or string.

Error 404 - not found

You can apply your own 404 page by add [error].html template or 404.html in public directory

Using DB

ORM is based on clancats/hydrahon, so check out docs and examples/orm

To create a model, you need to create a file named which is a singular form of the db table.

Example model:

How can we use this model?

When Handler class is decorated with #[nyxt('orm')] every model will be injected to handler

To learn how exactly can u build queries take a look for hydrahon docs

Important

Now you may be asking "how does Nyxt connect to the database?"

Answer: If your app is using db, you must change index.php a little and provide db connector as the first argument of constructor of \Nyxt\Base

E.g.


All versions of nyxt with dependencies

PHP Build Version
Package Version
Requires rakit/validation Version ^1.4
bramus/router Version ^1.5
twig/twig Version ^3.2
clancats/hydrahon Version ^1.1
icanboogie/inflector Version ^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package milesq/nyxt contains the following files

Loading the files please wait ....