Download the PHP package yeszao/fastphp without Composer

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

FastPHP

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

简述

fastphp是一款简单的PHP MVC框架,目的是方便学习《手把手编写自己的PHP MVC框架》教程的同学下载源代码,详细介绍请参考网站:http://www.awaimai.com/128.html

要求:

目录说明

使用

1.安装

主要介绍通过composer和git两种安装方法,选择其一即可。

方法1:Composer安装(推荐)

其中,--no-dev表示不安装-dev依赖包(PHPUnit)。

方法2:Github安装:

说明:这两个命令都会创建并将代码安装到project目录。

2. 创建数据库

在数据库中创建名为 project 的数据库,并插入两条记录,命令:

3.修改数据库配置文件

打开配置文件 config/config.php ,使之与自己的数据库匹配

4.配置Nginx或Apache

在Apache或Nginx中创建一个站点,把 project 设置为站点根目录(入口文件 index.php 所在的目录)。

然后设置单一入口, Apache服务器配置:

Nginx服务器配置:

5.测试访问

然后访问站点域名:http://localhost/ 就可以了。


All versions of fastphp with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.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 yeszao/fastphp contains the following files

Loading the files please wait ....