2017 © Pedro Peláez
 

library ycf

A simple PHP framework for api or cli application

image

kcloze/ycf

A simple PHP framework for api or cli application

  • Friday, May 27, 2016
  • by kcloze
  • Repository
  • 3 Watchers
  • 3 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

ycf framework

  • a very simple,micro PHP framework
  • it can be run in Cli,PHP-FPM,Swoole
  • composer install and name space auto load
  • a solution for micro-services and blazing fast APIs

Requirements

  • PHP 5.3+

Installation

  1. git clone https://github.com/kcloze/ycf.git your-app
  2. cd your-app and run: composer install
  3. chmod -R 777 src/runtime/
  4. edit src/config/settings.ini.php for mysql config or redis,add test table(https://github.com/kcloze/ycf/blob/master/pdo_test.sql)

How to run

php-fpm

run in php-fpm: Open your browser and enter http://youhost/index.php?ycf=hello&act=hello, (*1)

if set nginx as follow,url can be simple: http://youhost/hello/hello, (*2)

        location / {
                if (!-e $request_filename){
                         rewrite ^/(.*) /index.php last;
                 }
        }

cli

run in cli:

  • php index.php ycf=hello act=hello

swoole

run with swoole:
* php env in you path * chmod u+x server.sh * ./server.sh, (*3)

Documentation

  • in src/service/ ,you can add your business code here
  • Naming Conventions:
  • ---service class name :YcfYourname.php
  • ---method name : public static function actionYourname()
  • DB Class Use
  • if you need redis,shoud install phpredis extention(https://github.com/phpredis/phpredis)

How to use Task

public function actionTask()
    {
        // send a task to task worker.
        $param = array(
            'action' => 'test',
            'time'   => time(),
        );
        //var_dump(HttpServer::getInstance()->http);
        //$this->http->task(json_encode($param));
        for ($i = 0; $i < 1; $i++) {
            $taskId = YcfCore::$_http_server->task(json_encode($param));
        }
        echo $taskId . " hello ycf" . time();

    }

Benchmarks

benchmarks, (*4)

Community

mail: pei.greet@gmail.com qq群: 141059677, (*5)

License

The ycf framework is open-sourced software licensed under the MIT license, (*6)

The Versions

27/05 2016

dev-master

9999999-dev https://www.kcloze.com

A simple PHP framework for api or cli application

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

  • php >=5.3.0

api cli microframework