Skip to content

Commit

Permalink
update composer deps
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Mar 30, 2016
1 parent 01e880d commit 55f1fff
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 9 deletions.
1 change: 0 additions & 1 deletion library/PSX/Data/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"psx/validate": "^2.0",
"psx/json": "^2.0",
"psx/http": "^2.0",
"psx/uri": "^2.0",
"psx/model": "^2.0",
"psx/datetime": "^2.0",
"psr/cache": "^1.0",
Expand Down
2 changes: 1 addition & 1 deletion library/PSX/DateTime/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": ">=5.4"
"php": ">=5.5"
},
"autoload": {
"psr-4": {
Expand Down
5 changes: 5 additions & 0 deletions library/PSX/Framework/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@
"jms/serializer": "^1.1",
"monolog/monolog": "^1.17",
"psr/log": "^1.0",
"psx/api": "^2.0",
"psx/cache": "^2.0",
"psx/data": "^2.0",
"psx/http": "^2.0",
"psx/schema": "^2.0",
"psx/sql": "^2.0",
"psx/validate": "^2.0",
"symfony/console": "^2.8",
"symfony/dependency-injection": "^2.8",
"symfony/event-dispatcher": "^2.8"
Expand Down
3 changes: 1 addition & 2 deletions library/PSX/Http/Cookie.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
namespace PSX\Http;

use InvalidArgumentException;
use PSX\DateTime\DateTime;

/**
* Cookie
Expand Down Expand Up @@ -97,7 +96,7 @@ public function toString()
);

if ($this->expires !== null) {
$parameters['Expires'] = $this->expires->format(DateTime::HTTP);
$parameters['Expires'] = $this->expires->format('D, d M Y H:i:s \G\M\T');
}

if (!empty($this->path)) {
Expand Down
1 change: 0 additions & 1 deletion library/PSX/Http/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"require": {
"php": ">=5.5",
"psx/uri": "^2.0",
"psx/datetime": "^2.0",
"psr/http-message": "^1.0",
"zendframework/zend-diactoros": "^1.3"
},
Expand Down
3 changes: 2 additions & 1 deletion library/PSX/Json/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
}
],
"require": {
"php": ">=5.5"
"php": ">=5.5",
"psx/data": "^2.0"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 2 additions & 1 deletion library/PSX/Model/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
}
],
"require": {
"php": ">=5.5"
"php": ">=5.5",
"psx/data": "^2.0"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 2 additions & 1 deletion library/PSX/Oauth/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
}
],
"require": {
"php": ">=5.5"
"php": ">=5.5",
"psx/framework": "^2.0"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 2 additions & 1 deletion library/PSX/Oauth2/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
}
],
"require": {
"php": ">=5.5"
"php": ">=5.5",
"psx/framework": "^2.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 55f1fff

Please sign in to comment.