Skip to content

Commit 7d5f7dd

Browse files
author
Martin Brecht-Precht
committed
Changed the root namespace
1 parent 4af9004 commit 7d5f7dd

File tree

8 files changed

+24
-24
lines changed

8 files changed

+24
-24
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Martin Brecht-Precht, Markenwerk GmbH
3+
Copyright (c) 2016 Martin Brecht-Precht, Chroma Experience GmbH
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# PHP URL Util
22

3-
[![Build Status](https://travis-ci.org/markenwerk/php-url-util.svg?branch=master)](https://travis-ci.org/markenwerk/php-url-util)
4-
[![Test Coverage](https://codeclimate.com/github/markenwerk/php-url-util/badges/coverage.svg)](https://codeclimate.com/github/markenwerk/php-url-util/coverage)
3+
[![Build Status](https://travis-ci.org/chroma-x/php-url-util.svg?branch=master)](https://travis-ci.org/chroma-x/php-url-util)
4+
[![Test Coverage](https://codeclimate.com/github/chroma-x/php-url-util/badges/coverage.svg)](https://codeclimate.com/github/chroma-x/php-url-util/coverage)
55
[![Dependency Status](https://www.versioneye.com/user/projects/57272fdaa0ca35005083f1e6/badge.svg)](https://www.versioneye.com/user/projects/57272fdaa0ca35005083f1e6)
66
[![SensioLabs Insight](https://img.shields.io/sensiolabs/i/df239ecc-f336-4669-a017-fc826497115a.svg)](https://insight.sensiolabs.com/projects/df239ecc-f336-4669-a017-fc826497115a)
7-
[![Code Climate](https://codeclimate.com/github/markenwerk/php-url-util/badges/gpa.svg)](https://codeclimate.com/github/markenwerk/php-url-util)
8-
[![Latest Stable Version](https://poser.pugx.org/markenwerk/url-util/v/stable)](https://packagist.org/packages/markenwerk/url-util)
9-
[![Total Downloads](https://poser.pugx.org/markenwerk/url-util/downloads)](https://packagist.org/packages/markenwerk/url-util)
10-
[![License](https://poser.pugx.org/markenwerk/url-util/license)](https://packagist.org/packages/markenwerk/url-util)
7+
[![Code Climate](https://codeclimate.com/github/chroma-x/php-url-util/badges/gpa.svg)](https://codeclimate.com/github/chroma-x/php-url-util)
8+
[![Latest Stable Version](https://poser.pugx.org/chroma-x/url-util/v/stable)](https://packagist.org/packages/chroma-x/url-util)
9+
[![Total Downloads](https://poser.pugx.org/chroma-x/url-util/downloads)](https://packagist.org/packages/chroma-x/url-util)
10+
[![License](https://poser.pugx.org/chroma-x/url-util/license)](https://packagist.org/packages/chroma-x/url-util)
1111

1212
A PHP library providing common URL implementation.
1313

@@ -16,7 +16,7 @@ A PHP library providing common URL implementation.
1616
```{json}
1717
{
1818
"require": {
19-
"markenwerk/url-util": "~2.0"
19+
"chroma-x/url-util": "~2.0"
2020
}
2121
}
2222
```
@@ -32,7 +32,7 @@ require_once('path/to/vendor/autoload.php');
3232
### Parsing an URL
3333

3434
```{php}
35-
use Markenwerk\UrlUtil;
35+
use ChromaX\UrlUtil;
3636
3737
$url = new UrlUtil\Url('https://john:[email protected]:8443/path/to/resource?arg1=123&arg2=test#fragment');
3838
@@ -97,7 +97,7 @@ URL "http://doe:[email protected]:8080/path/to/another/resource?arg1=45
9797
## Contribution
9898

9999
Contributing to our projects is always very appreciated.
100-
**But: please follow the contribution guidelines written down in the [CONTRIBUTING.md](https://github.com/markenwerk/php-url-util/blob/master/CONTRIBUTING.md) document.**
100+
**But: please follow the contribution guidelines written down in the [CONTRIBUTING.md](https://github.com/chroma-x/php-url-util/blob/master/CONTRIBUTING.md) document.**
101101

102102
## License
103103

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55
"keywords": [
66
"URL"
77
],
8-
"homepage": "http://markenwerk.net/",
8+
"homepage": "http://chroma-x.de/",
99
"license": "MIT",
1010
"authors": [
1111
{
1212
"name": "Martin Brecht-Precht",
13-
"email": "mb@markenwerk.net",
14-
"homepage": "http://markenwerk.net"
13+
"email": "mb@chroma-x.de",
14+
"homepage": "http://chroma-x.de"
1515
}
1616
],
1717
"autoload": {
1818
"psr-4": {
19-
"Markenwerk\\UrlUtil\\": "src/"
19+
"ChromaX\\UrlUtil\\": "src/"
2020
}
2121
},
2222
"require": {

src/QueryParameter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
namespace Markenwerk\UrlUtil;
3+
namespace ChromaX\UrlUtil;
44

55
/**
66
* Class QueryParameter
77
*
8-
* @package Markenwerk\UrlUtil
8+
* @package ChromaX\UrlUtil
99
*/
1010
class QueryParameter implements QueryParameterInterface
1111
{

src/QueryParameterInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
namespace Markenwerk\UrlUtil;
3+
namespace ChromaX\UrlUtil;
44

55
/**
66
* Interface QueryParameterInterface
77
*
8-
* @package Markenwerk\UrlUtil
8+
* @package ChromaX\UrlUtil
99
*/
1010
interface QueryParameterInterface
1111
{

src/Url.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
namespace Markenwerk\UrlUtil;
3+
namespace ChromaX\UrlUtil;
44

55
/**
66
* Class Url
77
*
8-
* @package Markenwerk\UrlUtil
8+
* @package ChromaX\UrlUtil
99
*/
1010
class Url implements UrlInterface
1111
{

src/UrlInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
namespace Markenwerk\UrlUtil;
3+
namespace ChromaX\UrlUtil;
44

55
/**
66
* Interface UrlInterface
77
*
8-
* @package Markenwerk\UrlUtil
8+
* @package ChromaX\UrlUtil
99
*/
1010
interface UrlInterface
1111
{

test/UrlTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
namespace Markenwerk\UrlUtil;
3+
namespace ChromaX\UrlUtil;
44

55
/**
66
* Class UrlTest
77
*
8-
* @package Markenwerk\UrlUtil
8+
* @package ChromaX\UrlUtil
99
*/
1010
class UrlTest extends \PHPUnit_Framework_TestCase
1111
{

0 commit comments

Comments
 (0)