Skip to content
This repository was archived by the owner on Aug 19, 2022. It is now read-only.

Commit fe92fd2

Browse files
committed
Updated to 1.0.4 version
1 parent 73cddcc commit fe92fd2

19 files changed

Lines changed: 919 additions & 310 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# CHANGELOG
22

3+
## 1.0.4 - 2017-06-12
4+
5+
* Added `Eliasis\Module\Module->set()` method.
6+
* Added `Eliasis\Module\Module->get()` method.
7+
* Added `Eliasis\Module\Module->instance()` method.
8+
9+
* Deprecated `Eliasis\Module\Module->addOption()` method.
10+
11+
The `addOption()` method will be deleted in the next version. It will be replaced by the `set()` method and will be removed in the next version.
12+
313
## 1.0.3 - 2017-05-31
414

515
* Added `Eliasis\Module\Module->addOption()` method.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eliasis-framework/module",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "PHP library for adding addition of modules for Eliasis Framework.",
55
"type": "library",
66
"keywords": [
@@ -32,8 +32,8 @@
3232
"minimum-stability": "stable",
3333
"require": {
3434
"php": "^5.6 || ^7.0",
35-
"Eliasis-Framework/Eliasis" : "^1.0.8",
36-
"Josantonius/Hook" : "^1.0.3",
35+
"Eliasis-Framework/Eliasis" : "^1.0.9",
36+
"Josantonius/Hook" : "^1.0.4",
3737
"Josantonius/Json" : "^1.1.2"
3838
},
3939
"autoload": {

lib/vendor/composer/autoload_psr4.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
return array(
99
'Josantonius\\Url\\' => array($vendorDir . '/josantonius/url/src'),
10+
'Josantonius\\Json\\' => array($vendorDir . '/josantonius/json/src'),
1011
'Josantonius\\Hook\\' => array($vendorDir . '/josantonius/hook/src'),
1112
'Eliasis\\Module\\' => array($baseDir . '/src'),
1213
'Eliasis\\' => array($vendorDir . '/eliasis-framework/eliasis/src'),

lib/vendor/composer/autoload_static.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ class ComposerStaticInit7d665493a0d69eb2a102f56296aa7db1
1010
'J' =>
1111
array (
1212
'Josantonius\\Url\\' => 16,
13+
'Josantonius\\Json\\' => 17,
1314
'Josantonius\\Hook\\' => 17,
1415
),
1516
'E' =>
@@ -24,6 +25,10 @@ class ComposerStaticInit7d665493a0d69eb2a102f56296aa7db1
2425
array (
2526
0 => __DIR__ . '/..' . '/josantonius/url/src',
2627
),
28+
'Josantonius\\Json\\' =>
29+
array (
30+
0 => __DIR__ . '/..' . '/josantonius/json/src',
31+
),
2732
'Josantonius\\Hook\\' =>
2833
array (
2934
0 => __DIR__ . '/..' . '/josantonius/hook/src',

lib/vendor/composer/installed.json

Lines changed: 71 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -54,24 +54,24 @@
5454
},
5555
{
5656
"name": "eliasis-framework/eliasis",
57-
"version": "1.0.7",
58-
"version_normalized": "1.0.7.0",
57+
"version": "1.0.9",
58+
"version_normalized": "1.0.9.0",
5959
"source": {
6060
"type": "git",
6161
"url": "https://github.com/Eliasis-Framework/Eliasis.git",
62-
"reference": "2cdd5e66581af524349a1a2c099cdca88e8215d8"
62+
"reference": "b909d1bf48d8dd156151defcece4175d0751fc51"
6363
},
6464
"dist": {
6565
"type": "zip",
66-
"url": "https://api.github.com/repos/Eliasis-Framework/Eliasis/zipball/2cdd5e66581af524349a1a2c099cdca88e8215d8",
67-
"reference": "2cdd5e66581af524349a1a2c099cdca88e8215d8",
66+
"url": "https://api.github.com/repos/Eliasis-Framework/Eliasis/zipball/b909d1bf48d8dd156151defcece4175d0751fc51",
67+
"reference": "b909d1bf48d8dd156151defcece4175d0751fc51",
6868
"shasum": ""
6969
},
7070
"require": {
71-
"josantonius/url": "^1.1.1",
71+
"josantonius/url": "^1.1.2",
7272
"php": "^5.6 || ^7.0"
7373
},
74-
"time": "2017-05-19 19:51:01",
74+
"time": "2017-06-12 12:02:19",
7575
"type": "library",
7676
"extra": {
7777
"branch-alias": {
@@ -106,23 +106,23 @@
106106
},
107107
{
108108
"name": "josantonius/hook",
109-
"version": "1.0.2",
110-
"version_normalized": "1.0.2.0",
109+
"version": "1.0.4",
110+
"version_normalized": "1.0.4.0",
111111
"source": {
112112
"type": "git",
113113
"url": "https://github.com/Josantonius/PHP-Hook.git",
114-
"reference": "02ec6aa272b5cfc2f633ddb6270f38b2366d7460"
114+
"reference": "1bccac139199d33f0c330596abf6b17abca3be0f"
115115
},
116116
"dist": {
117117
"type": "zip",
118-
"url": "https://api.github.com/repos/Josantonius/PHP-Hook/zipball/02ec6aa272b5cfc2f633ddb6270f38b2366d7460",
119-
"reference": "02ec6aa272b5cfc2f633ddb6270f38b2366d7460",
118+
"url": "https://api.github.com/repos/Josantonius/PHP-Hook/zipball/1bccac139199d33f0c330596abf6b17abca3be0f",
119+
"reference": "1bccac139199d33f0c330596abf6b17abca3be0f",
120120
"shasum": ""
121121
},
122122
"require": {
123123
"php": "^5.6 || ^7.0"
124124
},
125-
"time": "2017-05-19 23:53:26",
125+
"time": "2017-06-02 02:16:38",
126126
"type": "library",
127127
"extra": {
128128
"branch-alias": {
@@ -149,7 +149,65 @@
149149
],
150150
"description": "Library for handling hooks.",
151151
"keywords": [
152+
"Action Hooks",
152153
"HOOK",
154+
"actions",
155+
"hhvm",
156+
"php"
157+
]
158+
},
159+
{
160+
"name": "josantonius/json",
161+
"version": "1.1.2",
162+
"version_normalized": "1.1.2.0",
163+
"source": {
164+
"type": "git",
165+
"url": "https://github.com/Josantonius/PHP-Json.git",
166+
"reference": "3bd96f56e4157d774321d78cf5fc86191378ef66"
167+
},
168+
"dist": {
169+
"type": "zip",
170+
"url": "https://api.github.com/repos/Josantonius/PHP-Json/zipball/3bd96f56e4157d774321d78cf5fc86191378ef66",
171+
"reference": "3bd96f56e4157d774321d78cf5fc86191378ef66",
172+
"shasum": ""
173+
},
174+
"require": {
175+
"php": "^5.6 || ^7.0"
176+
},
177+
"time": "2017-05-31 06:39:12",
178+
"type": "library",
179+
"extra": {
180+
"branch-alias": {
181+
"dev-master": "1.0-dev"
182+
}
183+
},
184+
"installation-source": "dist",
185+
"autoload": {
186+
"psr-4": {
187+
"Josantonius\\Json\\": "src/"
188+
}
189+
},
190+
"notification-url": "https://packagist.org/downloads/",
191+
"license": [
192+
"MIT"
193+
],
194+
"authors": [
195+
{
196+
"name": "Josantonius",
197+
"email": "hello@josantonius.com",
198+
"homepage": "https://josantonius.com",
199+
"role": "Developer"
200+
}
201+
],
202+
"description": "PHP simple library for managing Json files.",
203+
"keywords": [
204+
"Array to file",
205+
"File to array",
206+
"JavaScript Object Notation",
207+
"data exchange",
208+
"hhvm",
209+
"javascript",
210+
"json",
153211
"php"
154212
]
155213
}

lib/vendor/eliasis-framework/eliasis/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
# @since 1.0.0 #
1010
# #
1111
############################################################################
12-
1.0.6
12+
1.0.8

lib/vendor/eliasis-framework/eliasis/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eliasis-framework/eliasis",
3-
"version": "1.0.7",
3+
"version": "1.0.9",
44
"description": "Eliasis PHP Framework",
55
"type": "library",
66
"keywords": [
@@ -30,7 +30,7 @@
3030
"minimum-stability": "stable",
3131
"require": {
3232
"php": "^5.6 || ^7.0",
33-
"Josantonius/Url" : "^1.1.1"
33+
"Josantonius/Url" : "^1.1.2"
3434
},
3535
"autoload": {
3636
"psr-4": {

lib/vendor/eliasis-framework/eliasis/config/info.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,10 @@
1111

1212
use Eliasis\App\App;
1313

14-
$versionFile = file(dirname(__DIR__) . App::DS . 'VERSION.txt');
15-
1614
return [
1715

1816
'eliasis' => [
1917

20-
'version' => trim(array_pop($versionFile)),
18+
'version' => '1.0.9',
2119
],
2220
];

lib/vendor/eliasis-framework/eliasis/config/modules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @copyright Copyright (c) 2017
77
* @license https://opensource.org/licenses/MIT - The MIT License (MIT)
88
* @link https://github.com/Eliasis-Framework/Eliasis
9-
* @since 1.0.0
9+
* @since 1.0.9
1010
*/
1111

1212
return [

0 commit comments

Comments
 (0)