Download the PHP package guyliangilsing/php-base without Composer

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

PHPBase

A simple base project for custom PHP applications.

Table of Contents

Installation

Prerequisites

Before this project base can be used, the following tools and applications must be installed and accessible through the command line:

Application and tool versions

This project base has been created with the following application and tool versions:

Name Min. version Max. version
composer 2.4.2 latest
php 8.1.0 8.1.x

Required PHP extensions

The following extensions must be activated inside the php.ini file:

Running commands

Within this README file, there will be commands listed. All these commands must be run from the root directory. The root directory is the directory that this README file is located in.

Note: The version of composer does not matter, as long as it is version 2.

IMPORTANT: The listed versions have been used in the development of this project base and should work without any problems. Be mindful about other dependencies that you may add since they could not provide support for the given PHP version.

Project setup

Before the project can be started, a setup process must be done first.

Install composer dependencies

Create environment file

It is important that the contents of the example.env file is copied to a new .env file. The contents of the .env file are read at the start of each request to the application. Not creating this file will result in an exception error.

Webserver setup (optional)

When running this application on a webserver, make sure that the following setup process is done.

Note: For more information about a web server setup, visit the slim framework documentation.

Application root directory

The root directory of the entire application is located within the public folder. When using an external webserver, make sure that the root directory inside your configuration is set to this folder.

Request redirects

All requests should be redirected to the index.php file.

Apache

Make sure that the following apache modules are actived:

Nginx

The following Nginx configuration can be used:

Source directory structure

All code that directly provides functionality to the main application should be placed in the src (source) directory. Within src, the following folders are placed:

App directory

The App directory contains all application code, a layered architecture is being used by default. The app directory has the following sub directories:

Common
This directory contains all code that needs to be re=used throughout each layer inside the application.

Common\Helpers
This directory contains all helper code that needs to be re=used throughout each layer inside the application. It comes with a standard HTTP class that only provides a base for absolute paths.

Presentation
This directory contains all code for the presentation layer of the application. Within this directory, everything that provides functionality for the presentation side of your application should be placed here.

Presentation\Middleware
This directory contains all middleware that the presentation layer needs to use. It comes with a standard middleware class that removes trailing, and duplicate, slashes from the URL.

Config directory

This directory contains all code that provides functionality for the startup process of the entire application. The directory comes with a singular di.php file that provides DIConfig classes. A DIConfig is a class that provides specific data to the dependency container.

App
This directory contains all configuration classes that provide functionality to the application.

App\Autoloading
This directory contains DIConfig classes that provide specific data to the dependency container. A DIConfig class can be used to add definitions to the dependency container, or run a necesary startup process (like loading .env files or setting up a database connection). There are three default DIConfig classes:

Framework directory

This directory contains all code that provide basic functionality to the application startup process. The framework directory can also include general helpers and utilities, but this only should be done when this is necessary for the startup process, otherwise a Common directory of some sorts should be created inside the ./src/App directory.

Application startup process

It is very important to understand how this application base starts up and configures itself before a route can be registered. The application startup process goes as follows:

  1. Create a dependency container.
  2. Register all dependencies and run all startup processes.
  3. Create a base application class that bootstraps a Slim framework App instance.
  4. Register all middleware with the slim app instance.
  5. Register routes.
  6. Dispatch routes.

If, for whatever reason, the dependency container needs to be accessed for setting up something like an ORM, the getDependencyContainer() function runs step 1 and 2 of the startup process. This function can be called as soon as ./src/bootstrap.php is included.

IMPORTANT: It is not possible to access the dependency container during steps 1 and 2. Do not call the getDependencyContainer() multiple times.

Running the project locally

If the php command can be accessed from within a terminal or CLI, it can be used to run the project locally. For this the following two commands can be issued from the root directory:

The first command changes the current directory to the public directory. This is the webserver root of the project and contains the entrypoint to the application.

The second command starts up a local php development server. A neat feature of this server is that it redirects everything back to an index.php file when there are no other available/matching files. If an actual webserver is needed, it is recommended to look at the docker section of this README file.

Running the project in docker

This project base comes with a preconfigured Dockerfile that is placed in the root directory. This file creates an image that uses apache as its webserver. The apache configuration file can be found in the config folder that is also placed in the root directory.

Build image

Before you can run the docker container, you first need to build the image:

Start container

Once you an image, you can run it as follows:

Note: the command above starts this app on the following URL: 127.0.0.1:8080

Stop container

Once the container is running, you can stop it with the following command:

Note: the container name can be found by running the following command:

Remove container

Once the container is stopped, remove it with the following command:

Static code analysis

PHP insights is used, and configured, to provide a static code analysis report of the application source code.

Running the tool

Receive a detailed report for your written source code

Configuring rules

PHP insights's analysis rules can be configured through the phpinsights.php file inside the root directory.

Testing

PHP unit has been set up and configured with two testing suites: unit and integration. The configuration file (phpunit.xml) can be found in the root directory.

Run unit test suite

Run integration test suite


All versions of php-base with dependencies

PHP Build Version
Package Version
Requires slim/slim Version ^4.10
slim/psr7 Version ^1.5
php-di/php-di Version ^6.4
php-di/slim-bridge Version ^3.2
guyliangilsing/php-abstract-router Version ^1.1.1
vlucas/phpdotenv Version ^5.4
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 guyliangilsing/php-base contains the following files

Loading the files please wait ....