Download the PHP package cleey/phppoem without Composer

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

PhpPoem

PhpPoem, 如诗一般简洁优美的PHP框架
PhpPoem, a simple and beautiful php framework, php will be like poet.

Home: http://phppoem.com
Author: Cleey
QQ Group: 137951449

快速安装(类unix)

站点根目录shell输入git clone https://github.com/cleey/phppoem部署框架代码
配置Hosts如下,并添加本地测试域

echo "127.0.0.1 dev.phppoem.com" >> /etc/hosts

配置Nginx rewrite及path,如下


server {
listen       80; 
server_name  dev.phppoem.com;
index index.php index.html index.shtml;
#默认路径指向phppoem项目的public目录下
root  /path/www/phppoem/public;  

#phppoem Url Rewrite
location /{
    if (!-e $request_filename) {
        rewrite  ^/(.*)$  /index.php/$1  last;
        break;
    }   
}   

#phppoem Path Info
location ~ \.php($|/) {
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index index.php; 
    fastcgi_split_path_info  ^(.+\.php)(/.*)$;  
    fastcgi_param  PATH_INFO $fastcgi_path_info;
    fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
    include fastcgi.conf;
}

}

>重载Nginx, 输入以下命令使配置文件生效

nginx -s reload

>浏览器输入`http://dev.phppoem.com`, 框架会自动为您在目部录下构建测试项目`/app`,并在浏览器为您呈现Success!  
>现在! 开始感受PhpPoem诗般的优雅吧!

压力测试   
-----------------
服务器使用配置为 CPU:16核, RAM:16G测试 ,php5.3.3开启opcache,使用压测工具ab,结果如下: 

ab -c7500 -t10 test.com
Requests per second: 7836.84 [#/sec] (mean)
Time per request: 957.019 [ms] (mean)
Time per request: 0.128 [ms] (mean, across all concurrent requests)
Transfer rate: 1642.15 [Kbytes/sec] received


PhpPoem 2.0 并发 7500 持续10s,结果  7836.84 req/s

如何成为PhpPoem贡献者   
-----------------
PhpPoem 的源码托管在 GitHub,你可以进行派生(fork)、修改,最后发起 Pull Request 请求。我们会在最短的时间内对您提交的代码进行 Review,并反馈给您。

All versions of phppoem with dependencies

PHP Build Version
Package Version
Requires php Version >=5.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 cleey/phppoem contains the following files

Loading the files please wait ....