KO
|
EN
gitlite — search
Search
#ai-agent
#python
#mcp-server
#agentic-ai
#automation
#genpark
#llm-tools
#dsh-plugin
#deepseek-harness
#ai-agents
#dsh
#claude-code
api-starter-kit
★ 56
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
abelana
:
Abelana is a simple and beautiful cross-platform application allowing users to publish and view photos.
Smart-Polyfill
:
A smart polyfill server for browsers written in Node
drum-machine
:
How to write a simple drum machine that runs in the browser
cody1991.github.io
:
个人博客(也是自己构建的一个简单Jekyll开源主题模板)
ui-styleguides
:
A curated list of UI styleguides --
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
api-starter-kit
?
Download (.md)
# Overview restful api library with laravel or lumen. # Installation To install this package you will need: * Laravel 5.1+ or Lumen 5.1+ * PHP 5.5.9+ You must then modify your composer.json file and run composer update to include the latest version of the package in your project. ```composer "require": { "qijitech/api-starter-kit": "dev-master" } ``` # Laravel Open config/app.php and register the required service provider above your application providers. ```php 'providers' => [ Api\StarterKit\Providers\ApiStarterKitServiceProvider::class ] ``` If you'd like to make configuration changes in the configuration file you can pubish it with the following Aritsan command: ```php php artisan vendor:publish ``` # Lumen ```composer "require": { "qijitech/api-starter-kit": "dev-lumen" } ``` Open bootstrap/app.php and register the required service provider. ```php $app->register(Api\StarterKit\Providers\LumenServiceProvider::class) ``` # Sample Code You can find the sample code [here](https://github.com/qijitech/fakerapi). Note that you'll need to run composer install to install all the dependencies.