Download the PHP package bigeweb/framework without Composer

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

Model, View And Controller (MVC) by bigeweb Solution.

A full php project developed from scratch. This is similar with other mvc project. of course, will be slightly different from each other.

Generally, the MVC (Model-View-Controller) framework is a software architectural pattern commonly used in web development to organize code and separate concerns. Here's a brief description of each component:

Model: The model represents the data and business logic of the application. It interacts with the database, processes data, and contains the application's core logic. In an MVC framework, the model is responsible for managing data and ensuring its integrity. View: The view is responsible for presenting the user interface of the application to the users. It receives data from the controller and renders it into a format that users can interact with, such as HTML, XML, or JSON. Views are typically separated from the application logic to promote code reusability and maintainability. Controller: The controller acts as an intermediary between the model and the view. It receives user input from the view, processes it, and interacts with the model to retrieve or update data. The controller then passes the updated data to the view for display to the user. Controllers in MVC frameworks handle routing requests, invoking appropriate actions, and managing the application's flow. In summary, the MVC framework provides a structured approach to developing web applications by separating the application's concerns into three distinct components: model, view, and controller. This separation of concerns promotes code organization, maintainability, and scalability, making it easier to manage and extend the application over time.

In this MVC, the most important feature includes

How to install this project.

The first step to take in installing this project is to run composer install bigeweb\framework This will download the full project in your working directory.

To open your first url, open your terminal and type php -S localhost:8000 -t public Alternatively you can use php -S 127.0.0.1:8000 -t public. This will start a new server and provide you with the appropriate url. Copy the url and paste it in your browser.

To make changes to the view open the resources' directory. Create a new file or add anything. To make changes to the routes. Create a new file and give it any name you want. This will be automatically added to the route list.

More information and updates will be available soon.


All versions of framework with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0
dompdf/dompdf Version dev-master
symfony/mailer Version 6.4.x-dev
phpmailer/phpmailer Version dev-master
phpoffice/phpspreadsheet Version dev-master
symfony/http-client Version 6.4.x-dev
guzzlehttp/guzzle Version 7.9.x-dev
php-http/guzzle7-adapter Version 1.x-dev
ext-curl Version *
ext-pdo Version *
symfony/var-dumper Version 6.4.x-dev
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 bigeweb/framework contains the following files

Loading the files please wait ....