Download the PHP package madmikeyb/neutron without Composer

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

Neutron Framework

Neutron is a lightweight PHP micro-framework built with a focus on simplicity, modularity, and flexibility. It leverages modern PHP libraries for routing, templating, and logging to create a clean and efficient development experience.


Table of Contents


Features


Requirements


Installation

  1. Clone the repository:

  2. Navigate into the project directory:

  3. Install dependencies using Composer:

  4. Set up your environment variables:

    Copy the example .env file to set up environment variables:

  5. Update your .env file with the necessary configuration:

Directory Structure


Usage

Running the Application

To run the application locally, use PHP's built-in server:

Visit http://localhost:8000 in your browser to see the application running.


Routes

Routes are defined in src/routes.php. Here is an example of how a route can be defined:


Controllers

Controllers are located in the src/Controller directory. A typical controller extends the BaseController and uses dependency injection for services like logging and rendering.

Example:


Handling Request Methods and Parameters

GET Parameters

To retrieve query parameters (GET) in your controller, use the getQueryParams() method from the ServerRequestInterface. This method returns an associative array of all query parameters.

Example:

If you visit https://example.com/home?foo=bar, the $foo variable will contain "bar".


POST Parameters

For POST requests (typically form submissions), use the getParsedBody() method. This method returns an associative array of all parameters sent in the body of the request.

Example:

If a form submits a POST request to https://example.com/create with a field foo having the value bar, the $foo variable will contain "bar".


PUT and PATCH Requests

Both PUT and PATCH requests are used to update resources. You can retrieve the data from these methods using getParsedBody() just like with POST.

Example:

A PUT request to https://example.com/update/1 containing data like foo=bar will allow you to access the foo value via $foo.


DELETE Requests

While DELETE requests typically do not carry data, if they do, you can use getParsedBody() to retrieve body data or getQueryParams() for URL query parameters.

Example:

For example, a DELETE request to https://example.com/delete?id=1 would allow you to access the id query parameter.


Templates

Twig templates are located in the views directory. Here's an example home.twig template:


Logging

The framework uses Monolog for logging. Log files are written to the logs/ directory. The logging level and destination can be configured via the .env file.

Example log entry:


Working with Console Commands

Neutron supports command-line operations using Symfony Console, which allows you to create and run CLI commands easily.

Setting Up Console Commands

Neutron provides a console.php file that acts as an entry point for the command-line application. You can register and manage your custom commands in the src/console.php file.

Auto-Loading Commands

Neutron also supports automatic loading of commands from the src/Command/ directory. This allows you to define commands without manually registering them in the src/console.php file.

To take advantage of this, simply add your command classes to the src/Command/ directory, and they will be automatically loaded and registered by the framework.

Registering a Command

To add a new command to your application, follow these steps:

  1. Create a Command Class: Define a new command class in the src/Command/ directory by extending Symfony\Component\Console\Command\Command.

    Example Command:

  2. (Optional) Register the Command: Open the src/console.php file and register the command:

Running Commands

Once the commands are defined and registered, you can run them using the console.php file in your project root:

This will execute the HelloCommand and print the message "Hello, World.".


Using Input Arguments and Options

Symfony Console also supports input arguments and options for more flexible commands.

Example with Arguments:

You can now run the command with an argument:


Generating Migrations

You can generate migrations using the generateMigration command. Migrations are used to define changes to your database schema in a structured way. Optionally, you can also create a corresponding model for each migration.

Syntax:


Example:

This command will create:

The migration file will look like this:

The model class will look like this:


Running Migrations

Once you've generated migrations, you can run them using the migrate command. This will apply any new migrations to your database.

Syntax:

This command will:

Migrations are logged in logs/migrations.log for future reference.


Using the ORM

Neutron provides a simple, chainable ORM for interacting with your database. Below are some examples of how you can use the ORM to interact with your data models.


Retrieving All Records

You can retrieve all records from a database table using the all() method.

Retrieving a Single Record

You can retrieve a single record based on a condition using the where() method combined with one() or get().

Alternatively, you can use find() to retrieve a record by its primary key (e.g., id).

Filtering Records with where()

You can filter records using the where() method and chain multiple conditions.

You can also use operators with the where query. The default, if one is not passed, is '='. An example of a "between" query is below:

Ordering Records with orderBy()

You can order the results of a query using the orderBy() method.

Limiting Results with limit() and offset()

You can limit the number of results and skip a number of records using the limit() and offset() methods.

Checking if a Record Exists with exists()

You can check if a record exists by using the exists() method.

Inserting a New Record

You can create and insert a new record using the save() method.

After calling save(), the new record will be inserted into the database, and the primary key (id) will be automatically set on the model.

Updating an Existing Record

You can update an existing record by first retrieving it and then calling save().

The save() method will automatically update the record in the database if the model already has a primary key.

Deleting a Record

You can delete a record from the database using the delete() method.

Once the delete() method is called, the record will be removed from the database, and the primary key will be unset from the model.

Building Queries without Executing Them (with toSql())

If you want to see the SQL query that would be executed without running it, you can use the toSql() method.


Debugging

Enable debugging by setting APP_DEBUG=true in your .env file. This will enable error pages with detailed stack traces, powered by Whoops.


Environment Variables

Environment variables are managed using phpdotenv. You can define custom environment variables in your .env file.


Contributing

Feel free to open an issue or submit a pull request if you find any bugs or want to add new features. Contributions are always welcome!


License

This project is licensed under the BSD 2-Clause "Simplified" License.


Future Improvements


All versions of neutron with dependencies

PHP Build Version
Package Version
Requires vlucas/phpdotenv Version ^5.4
symfony/var-dumper Version ^5.0
filp/whoops Version ^2.14
monolog/monolog Version ^2.8
twig/twig Version ^3.0
league/route Version ^5.1
league/container Version ^4.2
league/event Version ^3.0
laminas/laminas-diactoros Version ^2.17
laminas/laminas-httphandlerrunner Version ^2.1
symfony/console Version ^5.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 madmikeyb/neutron contains the following files

Loading the files please wait ....