Skip to content

Commit 1d656c4

Browse files
committed
v0.35.5
1 parent ee34894 commit 1d656c4

File tree

10 files changed

+32
-29
lines changed

10 files changed

+32
-29
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.35.5] - 2024-07-13
10+
### Added
11+
- Added support `HTTP_AUTHORIZATION` header to `RequestFactory::class` is available in `$_SERVER`.
12+
913
## [0.35.4] - 2024-07-12
1014
### Fixed
1115
- Fixed Schdeule time in class `Schedule::schduler()` must equal with `Facades\Schedule::class` time.

composer.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,20 @@
4949
]
5050
},
5151
"replace": {
52-
"sonypradana/collection": "0.35.4",
53-
"sonypradana/console": "0.35.4",
54-
"sonypradana/container": "0.35.4",
55-
"sonypradana/cron": "0.35.4",
56-
"sonypradana/database": "0.35.4",
57-
"sonypradana/file": "0.35.4",
58-
"sonypradana/http": "0.35.4",
59-
"sonypradana/router": "0.35.4",
60-
"sonypradana/security": "0.35.4",
61-
"sonypradana/support": "0.35.4",
62-
"sonypradana/template": "0.35.4",
63-
"sonypradana/text": "0.35.4",
64-
"sonypradana/time": "0.35.4",
65-
"sonypradana/view": "0.35.4"
52+
"sonypradana/collection": "0.35.5",
53+
"sonypradana/console": "0.35.5",
54+
"sonypradana/container": "0.35.5",
55+
"sonypradana/cron": "0.35.5",
56+
"sonypradana/database": "0.35.5",
57+
"sonypradana/file": "0.35.5",
58+
"sonypradana/http": "0.35.5",
59+
"sonypradana/router": "0.35.5",
60+
"sonypradana/security": "0.35.5",
61+
"sonypradana/support": "0.35.5",
62+
"sonypradana/template": "0.35.5",
63+
"sonypradana/text": "0.35.5",
64+
"sonypradana/time": "0.35.5",
65+
"sonypradana/view": "0.35.5"
6666
},
6767
"extra": {
6868
"branch-alias": {

src/System/Console/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"require": {
1111
"php": "^8.0",
1212
"sonypradana/validator": "^0.8",
13-
"sonypradana/text": "^0.35.4"
13+
"sonypradana/text": "^0.35.5"
1414
},
1515
"autoload": {
1616
"psr-4": {

src/System/Database/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/collection": "^0.35.4"
12+
"sonypradana/collection": "^0.35.5"
1313
},
1414
"autoload": {
1515
"psr-4": {

src/System/Http/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"require": {
1111
"php": "^8.0",
1212
"sonypradana/validator": "^0.8",
13-
"sonypradana/collection": "^0.35.4",
14-
"sonypradana/macroable": "^0.35.4",
15-
"sonypradana/text": "^0.35.4"
13+
"sonypradana/collection": "^0.35.5",
14+
"sonypradana/macroable": "^0.35.5",
15+
"sonypradana/text": "^0.35.5"
1616
},
1717
"autoload": {
1818
"psr-4": {

src/System/Router/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/collection": "^0.35.4",
13-
"sonypradana/http": "^0.35.4",
14-
"sonypradana/text": "^0.35.4"
12+
"sonypradana/collection": "^0.35.5",
13+
"sonypradana/http": "^0.35.5",
14+
"sonypradana/text": "^0.35.5"
1515
},
1616
"autoload": {
1717
"psr-4": {

src/System/Support/composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/integrate": "^0.35",
13-
"sonypradana/macroable": "^0.35.4"
12+
"sonypradana/macroable": "^0.35.5"
1413
},
1514
"autoload": {
1615
"psr-4": {

src/System/Text/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"require": {
1111
"php": "^8.0",
1212
"ext-mbstring": "*",
13-
"sonypradana/macroable": "^0.35.4"
13+
"sonypradana/macroable": "^0.35.5"
1414
},
1515
"autoload": {
1616
"psr-4": {

src/System/Time/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/collection": "^0.35.4",
13-
"sonypradana/support": "^0.35.4",
14-
"sonypradana/text": "^0.35.4"
12+
"sonypradana/collection": "^0.35.5",
13+
"sonypradana/support": "^0.35.5",
14+
"sonypradana/text": "^0.35.5"
1515
},
1616
"autoload": {
1717
"psr-4": {

src/System/View/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/http": "^0.35.4"
12+
"sonypradana/http": "^0.35.5"
1313
},
1414
"autoload": {
1515
"psr-4": {

0 commit comments

Comments
 (0)