Download the PHP package selden1992/ppe without Composer

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

一个基于phalcon的laravel框架,php7.0以上版本,composer安装

Build Status License

About ppe

Note: ,phalcon框架本身提供一系列的功能,但是需要整合在一起才能完成一个完整的项目目录,本项目的目的是把phalcon可以有laravel的舒适度、友好、简单、完备的各种好处,但又不失性能。

已经集成的功能

安装

如果安装不上,记得切换国内composer镜像

composer create-project selden1992/ppe

多模块

config/app.php配置多模块

    'default_module'=>'index',
    'modules' => [
        "index" => [
            // 命名空间格式名称
            "nameSpace" => 'Index',
            "domain" => env('index_domain',"www.ppe.app"),
            'core' => 'full',
        ],
    ],

可以配合.env配置,区分不同环境的模块配置

Facades门脸

Facades的使用对开发非常有帮助,例如发送短信功能,本地调试使用写日志方式调试,正式环境就真实发送,只要业务层统一使用门脸调用,就可以无缝地切换

apps/Facades/Kernel.php注册业务门脸

所有门脸都是惰性加载

Exceptions异常

处理框架自带的异常处理handler外,可以在apps/Exceptions/Kernel.php注册业务异常处理,例如错误发生邮件、发生日记管理系统

已有handler(错误日志记录,404页面处理,500页面处理)

如何对框架进行修改

本框架完全使用DI贯穿整个项目,为了就是可像usb那样,快速切换或者添加功能

修改boostsrap/app.php文件的initializeServices内容,就可以替换框架任意功能

License

The ppe framework is open-sourced software licensed under the MIT license.


All versions of ppe with dependencies

PHP Build Version
Package Version
Requires selden1992/ppe-framework Version ^1.0
mashape/unirest-php Version ^3.0
chrisboulton/php-resque Version ^1.2
phpmailer/phpmailer Version ^6.0
workerman/gateway-worker Version ^3.0
yzalis/identicon Version ^1.2
workerman/gatewayclient Version ^3.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 selden1992/ppe contains the following files

Loading the files please wait ....