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