aqilix / apigility-image-skeleton
Apigility For Image Skeleton API
Requires
- php: >=5.3.3
- ext-gd: *
- ext-intl: *
- aqilixapi/image: >=1.1
- aqilixapi/s3: >=1.1
- aws/aws-sdk-php-zf2: 2.0.0
- doctrine/doctrine-orm-module: =0.8.0
- zendframework/zendframework: >=2.3.2,<3.0.0
- zfcampus/zf-apigility: 1.0.3
- zfcampus/zf-apigility-doctrine: 1.0.2
- zfcampus/zf-apigility-documentation: 1.0.5
- zfcampus/zf-apigility-documentation-swagger: 1.0.4
Requires (Dev)
- squizlabs/php_codesniffer: 1.4.*
- zend/zend-studio-development-mode: ~1.0
- zendframework/zend-developer-tools: dev-master
- zendframework/zftool: dev-master
- zfcampus/zf-apigility-admin: 1.1.2
- zfcampus/zf-apigility-welcome: dev-master
- zfcampus/zf-deploy: ~1.0
- zfcampus/zf-development-mode: 2.0.*
- zfr/zfr-cors: ~1.0
This package is not auto-updated.
Last update: 2025-01-08 10:37:36 UTC
README
Requirements
Please see the composer.json file.
Installation
Run composer composer install
to load all dependencies.
Development
To test this application you can run it with PHP Built in Web Server
php -S 0.0.0.0:8080 -t public public/index.php
Then access it on web browser http://localhost:8080
, it will redirect to documentation page http://localhost:8080/apigility/documentation
.
If you want to continue development, you should enable the development mode by rename file config/development.config.php.dist
to config/development.config.php
. Then modify the controller file (module/Application/src/Application/Controller/IndexController.php
) by change this following line
return $this->redirect()->toRoute('zf-apigility/documentation');
to
return $this->redirect()->toRoute('zf-apigility/welcome');
For database configuration and how to use the API, I have created it on aqilixapi/image
README. Please check it