Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
Merge branch 'promote/develop'
Browse files Browse the repository at this point in the history
Promote develop to master in preparation for 1.1.
  • Loading branch information
weierophinney committed Apr 16, 2015
2 parents 960990c + b8e9537 commit ae4abe6
Show file tree
Hide file tree
Showing 43 changed files with 32 additions and 2,774 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Apigility Skeleton Application

Requirements
------------

Please see the [composer.json](composer.json) file.

Installation
Expand All @@ -26,7 +26,7 @@ tar xzf zf-apigility-skeleton-0.9.1.tgz
### Via Composer (create-project)

You can use the `create-project` command from [Composer](http://getcomposer.org/)
to create the project in one go:
to create the project in one go (you need to install [composer.phar](https://getcomposer.org/doc/00-intro.md#downloading-the-composer-executable)):

```bash
curl -s https://getcomposer.org/installer | php --
Expand Down
21 changes: 13 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,27 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"dev-develop": "1.1-dev"
"dev-master": "1.1-dev",
"dev-develop": "1.2-dev"
}
},
"require": {
"php": ">=5.3.23",
"zendframework/zendframework": ">=2.3.2,<3.0.0",
"zendframework/zendframework": "~2.4",
"zfcampus/zf-apigility": "~1.0",
"zfcampus/zf-apigility-documentation": "~1.0",
"zfcampus/zf-development-mode": "~2.0"
"zfcampus/zf-apigility-documentation": "~1.0"
},
"require-dev": {
"zendframework/zftool": "dev-master",
"zendframework/zend-developer-tools": "dev-master",
"zfcampus/zf-apigility-admin": "~1.0",
"zfcampus/zf-apigility-welcome": "~1.0",
"zfcampus/zf-deploy": "~1.0"
"zfcampus/zf-apigility-admin": "~1.1",
"zfcampus/zf-apigility-admin-ui": "~1.1",
"zfcampus/zf-deploy": "~1.0",
"zfcampus/zf-development-mode": "~2.0"
},
"suggest": {
"zfcampus/zf-apigility-doctrine": "zfcampus/zf-apigility-doctrine ~1.0 to create Doctrine-Connected REST services",
"zfcampus/zf-http-cache": "zfcampus/zf-http-cache ~1.0 to add HTTP caching to your API",
"zfr/zfr-cors": "zfr/zfr-cors ~1.2 to add CORS support to your API"
}
}
Binary file removed composer.phar
Binary file not shown.
1 change: 0 additions & 1 deletion config/development.config.php.dist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ return array(
'modules' => array(
'ZFTool',
'ZF\Apigility\Admin',
'ZF\Apigility\Welcome',
),
// development time configuration globbing
'module_listener_options' => array(
Expand Down
45 changes: 1 addition & 44 deletions module/Application/config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'router' => array(
'routes' => array(
'home' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'type' => 'Literal',
'options' => array(
'route' => '/',
'defaults' => array(
Expand All @@ -17,36 +17,6 @@
),
),
),
// The following is a route to simplify getting started creating
// new controllers and actions without needing to create a new
// module. Simply drop new controllers in, and you can access them
// using the path /application/:controller/:action
'application' => array(
'type' => 'Literal',
'options' => array(
'route' => '/application',
'defaults' => array(
'__NAMESPACE__' => 'Application\Controller',
'controller' => 'Index',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'default' => array(
'type' => 'Segment',
'options' => array(
'route' => '/[:controller[/:action]]',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
),
),
),
),
),
),
),
'service_manager' => array(
Expand All @@ -55,19 +25,6 @@
'Zend\Db\Adapter\AdapterAbstractServiceFactory',
'Zend\Log\LoggerAbstractServiceFactory',
),
'aliases' => array(
'translator' => 'MvcTranslator',
),
),
'translator' => array(
'locale' => 'en_US',
'translation_file_patterns' => array(
array(
'type' => 'gettext',
'base_dir' => __DIR__ . '/../language',
'pattern' => '%s.mo',
),
),
),
'controllers' => array(
'invokables' => array(
Expand Down
Binary file removed module/Application/language/ar_SY.mo
Binary file not shown.
184 changes: 0 additions & 184 deletions module/Application/language/ar_SY.po

This file was deleted.

Binary file removed module/Application/language/cs_CZ.mo
Binary file not shown.
Loading

0 comments on commit ae4abe6

Please sign in to comment.