Skip to content

Commit

Permalink
Use dependecy anax/configure instead of anax/common.
Browse files Browse the repository at this point in the history
  • Loading branch information
mosbth committed Oct 12, 2017
1 parent a618a96 commit ef97056
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions REVISION.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ Notes for development v1.1.0*
* Rewrite asset, create, createRelative with Uri/UriBuilder class.


v1.0.8 (2017-10-12)
---------------------------------

* Use dependecy anax/configure instead of anax/common.


v1.0.7 (2017-09-25)
---------------------------------

Expand Down
5 changes: 1 addition & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@
},
"require": {
"php": ">=5.6",
"anax/common": "^1.0"
},
"require-dev": {
"php": ">=5.6"
"anax/configure": "^1.0"
}
}
7 changes: 5 additions & 2 deletions src/Url/Url.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@

namespace Anax\Url;

use \Anax\Configure\ConfigureInterface;
use \Anax\Configure\ConfigureTrait;

/**
* A helper to create urls.
*
*/
class Url implements \Anax\Common\ConfigureInterface
class Url implements ConfigureInterface
{
use \Anax\Common\ConfigureTrait;
use ConfigureTrait;



Expand Down

0 comments on commit ef97056

Please sign in to comment.