adapi
1.0.0
$ composer install
$ composer build
所有请求都转到./public/index.php
。
为 apache2 服务器设置重定向的示例:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA, L]
$ php -S 127.0.0.1:8080 -t public
./config/config.default.php
- 默认设置
./config/config.local.php
- 添加本地设置文件而不是默认设置
完整文档在这里。
安装和配置。
应用程序的描述。
API协议。
测试。
测试应用程序。在./phpunit.xml
中指定 api api_base_url
的路径以进行 phpunit 测试。
运行测试
$ composer test