yeaha / owl
RESTFul Web Framework
Installs: 583
Dependents: 1
Suggesters: 0
Security: 0
Stars: 99
Watchers: 12
Forks: 26
Open Issues: 0
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
- dev-master
- 1.1.0
- 1.0.0
- 0.3.x-dev
- 0.3.23
- 0.3.22
- 0.3.21
- 0.3.20
- 0.3.19
- 0.3.18
- 0.3.17
- 0.3.16
- 0.3.15
- 0.3.14
- 0.3.13
- 0.3.12
- 0.3.11
- 0.3.10
- 0.3.9
- 0.3.8
- 0.3.7
- 0.3.6
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.2
- 0.2.1
- 0.2.0
- 0.2.0-rc3
- 0.2.0-rc2
- 0.2.0-rc
- 0.1.35
- 0.1.34
- 0.1.33
- 0.1.32
- 0.1.31
- 0.1.30
- 0.1.29
- 0.1.28
- 0.1.27
- 0.1.26
- 0.1.25
- 0.1.24
- 0.1.23
- 0.1.22
- 0.1.21
- 0.1.20
- 0.1.19
- 0.1.18
- 0.1.17
- 0.1.16
- 0.1.15
- 0.1.14
- 0.1.13
- 0.1.12
- 0.1.11
- 0.1.10
- 0.1.9
- 0.1.8
- 0.1.7
- 0.1.6
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1
- dev-dev
- dev-php7
This package is not auto-updated.
Last update: 2024-10-26 18:01:07 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