yeaha / owl
RESTFul Web Framework
1.1.0
2016-12-02 06:54 UTC
Requires
- php: >=5.6.0
- yeaha/owl-core: 1.0.*
- yeaha/owl-mvc: 1.0.*
- yeaha/owl-orm: 1.1.*
- yeaha/owl-service: 1.0.*
Suggests
- monolog/monolog: Allows more advanced logging of the application flow
This package is not auto-updated.
Last update: 2026-06-07 02:11:28 UTC
README
Composer
{
"require": {
"yeaha/owl": "1.0.*"
}
}
Hello world
install
composer create-project yeaha/owl-site ./mysite
php-fpm + nginx
nginx.conf
server {
listen 127.0.0.1:12345;
root /PATH/TO/mysite/public;
index index.php;
location @default {
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME /PATH/TO/mysite/index.php;
}
location / {
try_files $uri @default;
}
}
swoole
require swoole extension
php -q /PATH/TO/mysite/server.php start