答案 0 :(得分:3)
1)您可以先使用git子模块安装ZF2骨架应用程序。看一下ZF2骨架应用程序的安装部分。
2)您可以在composer.json文件中查看Apigility的所有依赖项。 https://github.com/zfcampus/zf-apigility/blob/master/composer.json您可以开始使用git子模块将每个依赖项安装到您的供应商目录中,并在application.config.php文件中激活它们。
3)启动内置webserver的php($ php -S 0.0.0.0:8080 -t public / public / index.php)
建议使用php 5.4。*或更高版本来使用apigility。
我写了一篇博客文章,展示如何将apigility包含在你现有的zf2项目中(我在那里使用作曲家),看看是否有帮助。
http://www.ttiaf.com/2013/10/install-apigility-in-to-your-existing.html
答案 1 :(得分:1)
步骤1;
从Github下载
然后转到你的project_root_folder / config / development.config.php
使用上面显示的路径创建一个新的php文件。
<?php
return array(
// Development time modules
'modules' => array(
'ZFTool',
'ZF\Apigility\Admin',
'ZF\Apigility\Example',
),
// development time configuration globbing
'module_listener_options' => array(
'config_glob_paths' => array('config/autoload/{,*.}{global,local}-development.php')
)
);
答案 2 :(得分:0)