文件名称:example-api:使用Laravel的非常简单的API
文件大小:224KB
文件格式:ZIP
更新时间:2024-06-05 04:53:45
PHP
示例Laravel API 这是一个示例项目,展示了如何使用Laravel 5编写API。您可以在在线阅读该教程。 因为我使用了出色的来设置PhpStorm绑定和其他功能,所以会有一些细微的差异,特别是关于下载的软件包。 运行API 设置和运行API非常简单。 首先,创建数据库(如果需要,还创建数据库用户),然后将它们添加到.env文件中。 DB_DATABASE=your_db_name DB_USERNAME=your_db_user DB_PASSWORD=your_password 然后安装,迁移,播种所有爵士乐: composer install php artisan migrate php artisan db:seed php artisan serve 该API将在localhost:8000上运行。
【文件预览】:
example-api-master
----.gitignore(115B)
----routes()
--------api.php(1KB)
--------console.php(553B)
--------channels.php(508B)
--------web.php(453B)
----bootstrap()
--------autoload.php(559B)
--------cache()
--------app.php(2KB)
----resources()
--------views()
--------assets()
--------lang()
----artisan(2KB)
----public()
--------css()
--------robots.txt(24B)
--------index.php(2KB)
--------web.config(914B)
--------.htaccess(553B)
--------js()
--------favicon.ico(0B)
----tests()
--------Feature()
--------CreatesApplication.php(380B)
--------Unit()
--------TestCase.php(414B)
----phpunit.xml(1KB)
----database()
--------.gitignore(9B)
--------migrations()
--------factories()
--------seeds()
----composer.lock(139KB)
----composer.json(1KB)
----app()
--------Http()
--------Exceptions()
--------User.php(660B)
--------Providers()
--------Console()
--------Article.php(141B)
----.gitattributes(61B)
----package.json(1KB)
----readme.md(857B)
----config()
--------cache.php(3KB)
--------filesystems.php(2KB)
--------session.php(6KB)
--------database.php(3KB)
--------view.php(1004B)
--------broadcasting.php(1KB)
--------queue.php(2KB)
--------app.php(9KB)
--------services.php(980B)
--------mail.php(4KB)
--------auth.php(3KB)
----webpack.mix.js(555B)
----_ide_helper.php(387KB)
----storage()
--------app()
--------framework()
--------logs()
----server.php(563B)
----.env.example(504B)