stevevega / kima
Kima Framework
Installs: 4 836
Dependents: 1
Suggesters: 0
Security: 0
Stars: 6
Watchers: 4
Forks: 5
Open Issues: 0
Requires
- php: >=8.1
- datadog/dd-trace: >=0.86.3
- mongodb/mongodb: ^1.15.0
- dev-master
- 0.19.2
- 0.19.1
- 0.19.0
- 0.18.6
- 0.18.5
- 0.18.4
- 0.18.3
- 0.18.2
- 0.18.1
- 0.18.0
- 0.17.2
- 0.17.1
- 0.17.0
- 0.16.0
- 0.15.4
- 0.15.3
- 0.15.2
- 0.15.1
- 0.15.0
- 0.14.0
- 0.13.1
- 0.13.0
- 0.12.1
- 0.12.0
- 0.11.3
- 0.11.2
- 0.11.1
- 0.11.0
- 0.10.5
- 0.10.4
- 0.10.3
- 0.10.2
- 0.10.1
- 0.10.0
- 0.9.26
- 0.9.25
- 0.9.24
- 0.9.23
- 0.9.22
- 0.9.21
- 0.9.20
- 0.9.19
- 0.9.18
- 0.9.17
- 0.9.16
- 0.9.15
- 0.9.14
- 0.9.13
- 0.9.12
- 0.9.11
- 0.9.10
- 0.9.9
- 0.9.8
- 0.9.7
- 0.9.6
- 0.9.5
- 0.9.4
- 0.9.3
- 0.9.2
- 0.9.1
- 0.9.0
- dev-revert-46-master
- dev-php5
This package is auto-updated.
Last update: 2025-01-05 19:40:43 UTC
README
Kima PHP Framework
Usage
- Install composer
- Execute "composer create-project stevevega/kima-skeleton [DESTINATION PATH]"
- Make your webserver point to [DESTINATION PATH]/public
Example nginx server config
server {
listen 80;
server_name [YOUR_DOMAIN];
root [DESTINATION_PATH]/public;
index index.html index.htm index.php;
location / {
# This is cool because no php is touched for static content
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
# Filter out arbitrary code execution
location ~ \..*/.*\.php$ {return 404;}
include fastcgi_params;
fastcgi_param SERVER_NAME $http_host;
fastcgi_pass unix:/tmp/php.socket;
}
}