Download the PHP package codecat/nin without Composer

On this page you can find all versions of the php package codecat/nin. 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 nin

Nin is a minimalistic PHP framework originally based on some of the ideas of Yii. It stands for "No It's Not", a play on Yii's "Yes It Is".

How does it work?

Nin is an MVC system, where Nin\Model and Nin\Controller are the key classes, and views are included PHP files.

Getting started

Quickly get started with Nin by installing the dependency via Composer. You can find the package on Packagist. Install it by running:

Then create index.php:

Detailed installation

There is also a handy Docker image you can use which has the webserver and PHP preconfigured. Scroll to the bottom of the readme to learn more.

You can also download a release from Github (or the master branch) and include Nin from somewhere else if you prefer. Depending on your webserver, you might also need to configure a rewrite rule so everything points to index.php. Example configurations and basic instructions for popular webservers can be found in Caddy with php-fpm, since that works very well and already has proper routing to index.php by default.

The most minimalistic example

After calling nf_begin, you automatically have 1 route: /. By default, it points to IndexController.Index. This means it will look for a class called IndexController and a method of that class called actionIndex.

To create controller classes, make a folder controllers in the same directory as the index.php is located. Inside of this folder, we can make a file IndexController.php:

Routing works as controller.action, where controller is a class name, and action is the action name corresponding to a method in the class prefixed with action. For example, FooController.Bar will instantiate FooController and call actionBar on it.

Routes are defined using the nf_route function:

The last nf_route call in the example above has a special parameter in its path, :username. This will become a parameter in your action method. So in the above example, the third route would use this controller class:

Note that you can specify a type for the method parameter as well, to automatically convert to the correct type. For example, int $id will ensure you're definitely getting an integer for a parameter.

Action method parameters can also be set using URL parameters fetched from $_GET. For example, if your route was defined as simply /user, then you can still set string $username by making the URL ?username=foo. When username is not provided in the URL, Nin will throw an error about a missing required parameter. You can make the parameter optional by giving the method parameter a default value, for example: string $username = 'admin'.

Parameters will also be passed to the controller constructor, if it accepts parameters. They behave exactly like method parameters. For example, if you have a route /user/:id/posts pointing to UserController.Posts, you can use the following controller:

Using views

You can also do the following inside of a controller's action method:

This will render the foo view, located at views/controller/view.php. So if the above line was in IndexController, the view would be located at views/index/foo.php.

You can also pass parameters to the render() function, like so:

Your view can then use these parameters as if the keys in the array were PHP variables:

If you create a layout file at views/layout.php, you can use that as a wrapper for your views. It will expose the $content variable for the rendered view. It could for example look like this:

Using a database

Nin supports PostgreSQL, MySQL, and SQLite. To begin using a database such as PostgreSQL with Nin, specify the database connection information as a parameter to nf_begin:

Once this configuration is set, you are ready to create and use models.

Note that the postgres key above is a shortcut for the more verbose database configuration:

The more verbose configuration allows you to implement other third party database contexts and query builders if needed.

Using models

Models are defined as classes. Static functions are used to configure how the model behaves. For example, a user model looks like this:

By default, the primary key of models is defined as ID, but can be changed by defining a static function primarykey:

This tells Nin that the database table containing rows of that model is called users.

You can now use the new User class to do all kinds of operations. To create a new user:

(Sidenote: Make sure you strongly hash passwords in your database, the example above is only for demonstration purposes!)

To find a user by ID:

To find a user by attributes (column values):

You may also use findAll and findAllByAttributes to get multiple models. They return arrays and work how you would expect:

You can optionally pass options to findAll and findAllByAttributes as an array in the second parameter. The accepted keys are:

Models can also have relational properties. For example, if a user can have multiple posts, you would define the User class like this:

You can then simply use $user->posts to get an object array of the model Post, using the post column Author. There are 3 types of relationships you can define:

Middleware

You can set up middleware for specific routes. To do this, use the functions nf_route_middleware_begin and nf_route_middleware_end to wrap your nf_route calls in. For example, to require a user to be logged in for certain routes, you can do this:

When someone navigates to /posts or /users and they are not logged in (through the user session management provided through Nin\Nin::setuid()), the request will stop and never make it to the controller. Additionally, by default AuthSession will redirect the user to /login as well, so the user can log in.

Middleware can be stacked by doing multiple calls to nf_route_middleware_begin. Note that you must also call nf_route_middleware_end the same amount of times, or Nin will throw errors.

Docker

Nin is also available as a docker image based on caddy:alpine. Here's a quick example on how to use Nin in your Dockerfile:

And then in your index.php you include Nin like this:

Note that you do not need to do any manual configuration, as this is automatically handled by the Docker image.

There are several tags available:


All versions of nin with dependencies

PHP Build Version
Package Version
No informations.
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 codecat/nin contains the following files

Loading the files please wait ....