Skip to content

Commit

Permalink
Changed the root namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Brecht-Precht committed Jan 18, 2021
1 parent 4af9004 commit 7d5f7dd
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# PHP URL Util

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

A PHP library providing common URL implementation.

Expand All @@ -16,7 +16,7 @@ A PHP library providing common URL implementation.
```{json}
{
"require": {
"markenwerk/url-util": "~2.0"
"chroma-x/url-util": "~2.0"
}
}
```
Expand All @@ -32,7 +32,7 @@ require_once('path/to/vendor/autoload.php');
### Parsing an URL

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

Contributing to our projects is always very appreciated.
**But: please follow the contribution guidelines written down in the [CONTRIBUTING.md](https://github.com/markenwerk/php-url-util/blob/master/CONTRIBUTING.md) document.**
**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.**

## License

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
"keywords": [
"URL"
],
"homepage": "http://markenwerk.net/",
"homepage": "http://chroma-x.de/",
"license": "MIT",
"authors": [
{
"name": "Martin Brecht-Precht",
"email": "mb@markenwerk.net",
"homepage": "http://markenwerk.net"
"email": "mb@chroma-x.de",
"homepage": "http://chroma-x.de"
}
],
"autoload": {
"psr-4": {
"Markenwerk\\UrlUtil\\": "src/"
"ChromaX\\UrlUtil\\": "src/"
}
},
"require": {
Expand Down
4 changes: 2 additions & 2 deletions src/QueryParameter.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Markenwerk\UrlUtil;
namespace ChromaX\UrlUtil;

/**
* Class QueryParameter
*
* @package Markenwerk\UrlUtil
* @package ChromaX\UrlUtil
*/
class QueryParameter implements QueryParameterInterface
{
Expand Down
4 changes: 2 additions & 2 deletions src/QueryParameterInterface.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Markenwerk\UrlUtil;
namespace ChromaX\UrlUtil;

/**
* Interface QueryParameterInterface
*
* @package Markenwerk\UrlUtil
* @package ChromaX\UrlUtil
*/
interface QueryParameterInterface
{
Expand Down
4 changes: 2 additions & 2 deletions src/Url.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Markenwerk\UrlUtil;
namespace ChromaX\UrlUtil;

/**
* Class Url
*
* @package Markenwerk\UrlUtil
* @package ChromaX\UrlUtil
*/
class Url implements UrlInterface
{
Expand Down
4 changes: 2 additions & 2 deletions src/UrlInterface.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Markenwerk\UrlUtil;
namespace ChromaX\UrlUtil;

/**
* Interface UrlInterface
*
* @package Markenwerk\UrlUtil
* @package ChromaX\UrlUtil
*/
interface UrlInterface
{
Expand Down
4 changes: 2 additions & 2 deletions test/UrlTest.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Markenwerk\UrlUtil;
namespace ChromaX\UrlUtil;

/**
* Class UrlTest
*
* @package Markenwerk\UrlUtil
* @package ChromaX\UrlUtil
*/
class UrlTest extends \PHPUnit_Framework_TestCase
{
Expand Down

0 comments on commit 7d5f7dd

Please sign in to comment.