pmurkin / bootstrapi
This is my JSON API skeleton. Built using Slim 3, Eloquent, Zend-ACL
Installs: 209
Dependents: 0
Suggesters: 0
Security: 0
Stars: 88
Watchers: 15
Forks: 22
Open Issues: 4
Type:project
Requires
- php: >=5.6.0
- akrabat/ip-address-middleware: ^0.6
- doctrine/dbal: ^2.5
- firebase/php-jwt: ^3.0
- illuminate/database: ^5.2
- illuminate/events: ^5.2
- illuminate/pagination: ^5.3
- illuminate/translation: ^5.2
- illuminate/validation: ^5.2
- monolog/monolog: ^1.13
- neomerx/json-api: ^0.8.2
- slim/slim: ^3.0
- swiftmailer/swiftmailer: ^5.4
- symfony/config: ^3.3
- symfony/console: ^3.4
- symfony/finder: ^3.4
- vlucas/phpdotenv: ^2.4
- zendframework/zend-permissions-acl: ^2.6
Requires (Dev)
- codeception/codeception: ^2.2
- scrutinizer/ocular: ^1.3
This package is auto-updated.
Last update: 2024-10-29 04:36:46 UTC
README
bootstrapi
A better framework for building API with PHP. Built using Slim 3, Eloquent, Zend-ACL
Feature
- JWT authentication
- Validation request
- ACL role based
- Support base CRUD operation
- Filtering && Sorting && Pagination
- DB migration
- CLI-tools
- JSONAPI negotiation
- Generated documentation
- Code generator commands
- Log
Inside:
- Slim3 http://www.slimframework.com/
- ORM Eloquent https://laravel.com/docs/5.5/eloquent
- Zend ACL https://zendframework.github.io/zend-permissions-acl/
- JsonApi https://github.com/neomerx/json-api
- JWT https://github.com/firebase/php-jwt
- SwiftMailer http://swiftmailer.org/
- ApiDocJS http://apidocjs.com/
- PHP dotenv https://github.com/vlucas/phpdotenv
Demo
Example client (Ember.js application)
Requirements
- PHP >= 5.6
- Composer
- Nginx / Apache
- MySQL / PostgreSQL
- NodeJs && NPM && ApiDocJs (for docs generate)
Donate
Bitcoin payments: 1LLw4WuBz1oUSjQFntfQutD2T8mGZiA7pZ
Installing
- create new project
$ composer create-project -n -s dev pmurkin/bootstrapi my-api
- change config files:
$ nano .env
$ nano config/apidoc.php
$ nano version.sh
- configure server
Example configuration for nginx:
server {
listen 80 ;
server_name hostname;
error_log /path/to/nginx/logs/hostname.error.log;
access_log /path/to/nginx/logs/hostname.access.log;
index /frontend/index.html index.html;
root /path/to/projects/hostname;
location ~* (.+\.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar|woff|woff2|ttf|eot|svg))$ {
root /path/to/projects/hostname/frontend;
try_files $uri =404;
}
location ~ /api/ {
if (!-e $request_filename) {rewrite ^/(.*)$ /public/index.php?q=$1 last;}
}
location ~ \.php$ {
try_files $uri =404;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
}
location / {
if (!-e $request_filename) {rewrite ^/(.*)$ /frontend/index.html?q=$1 last;}
}
}
server {
listen 80 ;
server_name docs.hostname;
error_log /path/to/nginx/logs/hostname.error.log;
access_log /path/to/nginx/logs/hostname.access.log;
index index.html;
root /path/to/projects/hostname/docs;
location / {
try_files $uri $uri/ /index.html?$args;
}
location ~* (.+\.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar|woff|woff2|ttf|eot|svg))$ {
try_files $uri =404;
}
}
server {
listen 80 ;
server_name static.hostname;
error_log /path/to/nginx/logs/hostname.error.log;
access_log /path/to/nginx/logs/hostname.access.log;
root /path/to/projects/hostname/public/uploads;
location ~* (.+\.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar|woff|woff2|ttf|eot|svg))$ {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, PATCH, DELETE, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'Authorization,Content-Type,Accept,Origin,User-Agent,DNT,Cache-Control,X-Mx-ReqToken,Keep-Alive,X-Requested-With,If-Modified-Since';
try_files $uri =404;
}
}
Example configuration for apache:
<VirtualHost *:80>
ServerName hostname
DocumentRoot "/path/to/projects/hostname/"
<Directory "/path/to/projects/hostname/public/">
# use mod_env for define environment variables
SetEnv APPLICATION_ENV develop
SetEnv SECRET_KEY mysecretkey
# use mod_rewrite for pretty URL support
RewriteEngine on
# If a directory or a file exists, use the request directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise forward the request to index.php
RewriteRule ^api/(.*)$ /index.php?q=$1 [L]
# use index.php as index file
DirectoryIndex index.php
# ...other settings...
# Apache 2.4
Require all granted
## Apache 2.2
# Order allow,deny
# Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName docs.hostname
DocumentRoot "/path/to/projects/hostname/docs"
<Directory "/path/to/projects/hostname/docs">
# use index.html as index file
DirectoryIndex index.html
# ...other settings...
# Apache 2.4
Require all granted
## Apache 2.2
# Order allow,deny
# Allow from all
</Directory>
</VirtualHost>
- migration
$ php partisan migrate:up
- migration
$ php partisan run:seed
- generate documentation (optional)
$ php partisan generate:docs