Skip to content

Commit

Permalink
v3.0.4
Browse files Browse the repository at this point in the history
* Core:
  - Add `Orchestra\Support\Traits\DataContainerTrait::secureGet()` and `Orchestra\Support\Traits\DataContainerTrait::secureSet()`.

Signed-off-by: crynobone <[email protected]>
  • Loading branch information
crynobone committed Feb 13, 2016
1 parent cd5732e commit 0c5c233
Show file tree
Hide file tree
Showing 4 changed files with 110 additions and 105 deletions.
5 changes: 5 additions & 0 deletions docs/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ title: Support Change Log

## Version 3.0 {#v3-0}

### v3.0.4 {#v3-0-4}

* Core:
- Add `Orchestra\Support\Traits\DataContainerTrait::secureGet()` and `Orchestra\Support\Traits\DataContainerTrait::secureSet()`.

### v3.0.3 {#v3-0-3}

* Core:
Expand Down
68 changes: 34 additions & 34 deletions src/Facades/composer.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
{
"name": "orchestra/support-facades",
"description": "Support (Facades) Component for Orchestra Platform",
"homepage": "http://orchestraplatform.com/docs/latest/components/support/",
"keywords": ["orchestra-platform", "orchestral", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Support\\Facades\\" : ""
}
},
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.0.*"
},
"suggest": {
"laravel/framework": "Allow using orchestra/support component outside of Orchestra Platform (~5.0).",
"orchestra/foundation": "Allow using orchestra/support with Orchestra Platform (~3.0)."
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
},
"support": {
"issues": "https://github.com/orchestral/support/issues"
},
"minimum-stability": "dev"
"name": "orchestra/support-facades",
"description": "Support (Facades) Component for Orchestra Platform",
"homepage": "http://orchestraplatform.com/docs/latest/components/support/",
"keywords": ["orchestra-platform", "orchestral", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Support\\Facades\\" : ""
}
},
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.0.*"
},
"suggest": {
"laravel/framework": "Allow using orchestra/support component outside of Orchestra Platform (~5.0).",
"orchestra/foundation": "Allow using orchestra/support with Orchestra Platform (~3.0)."
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
},
"support": {
"issues": "https://github.com/orchestral/support/issues"
},
"minimum-stability": "dev"
}
70 changes: 35 additions & 35 deletions src/Providers/composer.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
{
"name": "orchestra/support-providers",
"description": "Support (Providers) Component for Laravel and Orchestra Platform",
"homepage": "http://orchestraplatform.com/docs/latest/components/support/",
"keywords": ["orchestra-platform", "orchestral", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Support\\Providers\\" : ""
}
},
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.0.*",
"orchestra/contracts": "3.0.*"
},
"suggest": {
"laravel/framework": "Allow using orchestra/support component outside of Orchestra Platform (~5.0).",
"orchestra/foundation": "Allow using orchestra/support with Orchestra Platform (~3.0)."
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
},
"support": {
"issues": "https://github.com/orchestral/support/issues"
},
"minimum-stability": "dev"
"name": "orchestra/support-providers",
"description": "Support (Providers) Component for Laravel and Orchestra Platform",
"homepage": "http://orchestraplatform.com/docs/latest/components/support/",
"keywords": ["orchestra-platform", "orchestral", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Support\\Providers\\" : ""
}
},
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.0.*",
"orchestra/contracts": "3.0.*"
},
"suggest": {
"laravel/framework": "Allow using orchestra/support component outside of Orchestra Platform (~5.0).",
"orchestra/foundation": "Allow using orchestra/support with Orchestra Platform (~3.0)."
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
},
"support": {
"issues": "https://github.com/orchestral/support/issues"
},
"minimum-stability": "dev"
}
72 changes: 36 additions & 36 deletions src/Support/composer.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
{
"name": "orchestra/support-core",
"description": "Support (Core) Component for Orchestra Platform",
"homepage": "http://orchestraplatform.com/docs/latest/components/support/",
"keywords": ["orchestra-platform", "orchestral", "laravel", "validator", "utilities"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Support\\" : ""
}
},
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.0.*",
"orchestra/contracts": "3.0.*"
},
"suggest": {
"laravel/framework": "Allow using orchestra/support component outside of Orchestra Platform (~5.0).",
"orchestra/foundation": "Allow using orchestra/support with Orchestra Platform (~3.0).",
"orchestra/messages": "Allow using Messages component (~3.0)."
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
},
"support": {
"issues": "https://github.com/orchestral/support/issues"
},
"minimum-stability": "dev"
"name": "orchestra/support-core",
"description": "Support (Core) Component for Orchestra Platform",
"homepage": "http://orchestraplatform.com/docs/latest/components/support/",
"keywords": ["orchestra-platform", "orchestral", "laravel", "validator", "utilities"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Support\\" : ""
}
},
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.0.*",
"orchestra/contracts": "3.0.*"
},
"suggest": {
"laravel/framework": "Allow using orchestra/support component outside of Orchestra Platform (~5.0).",
"orchestra/foundation": "Allow using orchestra/support with Orchestra Platform (~3.0).",
"orchestra/messages": "Allow using Messages component (~3.0)."
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
},
"support": {
"issues": "https://github.com/orchestral/support/issues"
},
"minimum-stability": "dev"
}

0 comments on commit 0c5c233

Please sign in to comment.