Skip to content
forked from yeaha/owl

RESTful web framework implemented by PHP

License

Notifications You must be signed in to change notification settings

christina11708/owl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

Composer

{
    "require": {
        "yeaha/owl": "0.1.*"
    }
}

Manual

require 'src/autoload.php';

php-fpm + nginx

nginx.conf

server {
    listen              127.0.0.1:12345;
    root                /PATH/TO/examples/hello_world/public;
    index               index.php;

    location @default {
        include        fastcgi_params;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_param  SCRIPT_FILENAME    /PATH/TO/examples/hello_word/index.php;
    }

    location / {
        try_files $uri @default;
    }
}

swoole

require swoole extension

php -q examples/hello_world/server.php start

About

RESTful web framework implemented by PHP

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%