Skip to content

Commit 87e92a6

Browse files
authored
Merge pull request #30 from chadicus/bc/issue-16
Change namespace to SubjectivePHP
2 parents a13255b + a2607c2 commit 87e92a6

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Chadicus\Csv
1+
# SubjectivePHP\Csv
22

33
[![Build Status](https://travis-ci.org/subjective-php/csv.svg?branch=master)](https://travis-ci.org/subjective-php/csv)
44
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/subjective-php/csv/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/subjective-php/csv/?branch=master)
@@ -18,7 +18,7 @@ A collection of classes to work with delimited files
1818

1919
## Requirements
2020

21-
Chadicus\Exceptions requires PHP 5.6 (or later).
21+
SubjectivePHP\Csv requires PHP 7.0 (or later).
2222

2323
## Composer
2424
To add the library as a local, per-project dependency use [Composer](http://getcomposer.org)! Simply add a dependency on `subjective-php/csv` to your project's `composer.json` file such as:

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"squizlabs/php_codesniffer": "^3.3"
1616
},
1717
"autoload": {
18-
"psr-4": { "Chadicus\\Csv\\": "src/" }
18+
"psr-4": { "SubjectivePHP\\Csv\\": "src/" }
1919
},
2020
"autoload-dev": {
21-
"psr-4": { "ChadicusTest\\Csv\\": "tests/" }
21+
"psr-4": { "SubjectivePHPTest\\Csv\\": "tests/" }
2222
}
2323
}

src/Reader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Chadicus\Csv;
3+
namespace SubjectivePHP\Csv;
44

55
/**
66
* Simple class for reading delimited data files

tests/ReaderTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
2-
namespace ChadicusTest\Csv;
2+
namespace SubjectivePHPTest\Csv;
33

4-
use Chadicus\Csv\Reader;
4+
use SubjectivePHP\Csv\Reader;
55
use PHPUnit\Framework\TestCase;
66

77
/**
8-
* Unit tests for the Chadicus\Csv\Reader class
8+
* Unit tests for the SubjectivePHP\Csv\Reader class
99
*
10-
* @coversDefaultClass \Chadicus\Csv\Reader
10+
* @coversDefaultClass \SubjectivePHP\Csv\Reader
1111
* @covers ::__construct
1212
* @covers ::__destruct
1313
* @covers ::<private>

0 commit comments

Comments
 (0)