Skip to content

Commit a2aaa45

Browse files
author
samija
committed
working user api version
asda
1 parent 52f0bbe commit a2aaa45

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+271
-446
lines changed

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@
22
composer.phar
33
vendor/
44

5-
65
# WebStorm, PHPStorm
76
.idea/
87

98
# Project
10-
config/autolad/global.php
11-
config/autolad/user.global.php
12-
config/autolad/zfconfig.php
9+
config/autoload/

CONTRIBUTING.md

100644100755
File mode changed.

LICENSE.txt

100644100755
File mode changed.

README.md

100644100755
File mode changed.

Vagrantfile

100644100755
File mode changed.

composer.json

100644100755
File mode changed.

composer.lock

100644100755
File mode changed.

config/application.config.old

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?php
2+
/**
3+
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
4+
* @copyright Copyright (c) 2014 Zend Technologies USA Inc. (http://www.zend.com)
5+
*/
6+
7+
return array(
8+
// This should be an array of module namespaces used in the application.
9+
'modules' => array(
10+
'Application',
11+
'ZF\DevelopmentMode',
12+
'ZF\Apigility',
13+
'ZF\Apigility\Provider',
14+
'ZF\Apigility\Documentation',
15+
'AssetManager',
16+
'ZF\ApiProblem',
17+
'ZF\Configuration',
18+
'ZF\MvcAuth',
19+
'ZF\OAuth2',
20+
'ZF\Hal',
21+
'ZF\ContentNegotiation',
22+
'ZF\ContentValidation',
23+
'ZF\Rest',
24+
'ZF\Rpc',
25+
'ZF\Versioning',
26+
),
27+
// This should be an array of paths in which modules reside.
28+
// If a string key is provided, the listener will consider that a module
29+
// namespace, the value of that key the specific path to that module's
30+
// Module class.
31+
'module_listener_options' => array(
32+
'module_paths' => array(
33+
'./module',
34+
'./vendor'
35+
),
36+
// Using __DIR__ to ensure cross-platform compatibility. Some platforms --
37+
// e.g., IBM i -- have problems with globs that are not qualified.
38+
'config_glob_paths' => array('config/autoload/{,*.}{global,local}.php')
39+
)
40+
);

config/application.config.php

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'ZF\\Rest',
2323
'ZF\\Rpc',
2424
'ZF\\Versioning',
25-
'Deeplife'
25+
'users'
2626
),
2727
'module_listener_options' => array(
2828
'module_paths' => array(

config/autoload/README.md

100644100755
File mode changed.

0 commit comments

Comments
 (0)