Skip to content

Commit f351a7f

Browse files
author
Daniel Mewes
committed
Moved code from src into rdb.
Also bumped the version to 2.2.0 Closes #113.
1 parent 370c5ff commit f351a7f

File tree

208 files changed

+12
-12
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

208 files changed

+12
-12
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
"jakub-onderka/php-parallel-lint": "dev-master"
2222
},
2323
"autoload": {
24-
"files": ["src/rdb/rdb.php"],
24+
"files": ["rdb/rdb.php"],
2525
"psr-4": {
26-
"r\\": "src/",
26+
"r\\": "rdb/",
2727
"r\\Tests\\": "tests/"
2828
}
2929
},
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/rdb/rdb.php renamed to rdb/rdb.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
$prefix = 'r\\';
2121

2222
// base directory for the namespace prefix
23-
$base_dir = __DIR__ . '/../../src/';
23+
$base_dir = __DIR__ . '/';
2424

2525
// does the class use the namespace prefix?
2626
$len = strlen($prefix);
@@ -44,4 +44,4 @@
4444
});
4545

4646
require_once(__DIR__ . '/global.php');
47-
require_once(__DIR__ . '../../version.php');
47+
require_once(__DIR__ . '/version.php');

rdb/version.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
namespace r;
4+
5+
define('PHP_RQL_VERSION', '2.2.0');

src/version.php

Lines changed: 0 additions & 5 deletions
This file was deleted.

tests/phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</testsuites>
1111
<filter>
1212
<whitelist processUncoveredFilesFromWhitelist="true">
13-
<directory suffix=".php">../src</directory>
13+
<directory suffix=".php">../rdb</directory>
1414
</whitelist>
1515
</filter>
1616
<php>

wercker-php53.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ build:
2424
name: phplint
2525
code: ./vendor/bin/parallel-lint --exclude vendor .
2626
#- mbrevda/phpcs:
27-
#- directory: src/
27+
#- directory: rdb/
2828
- script:
2929
name: phpunit
3030
code: composer test

wercker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ build:
2323
name: phplint
2424
code: ./vendor/bin/parallel-lint --exclude vendor .
2525
- mbrevda/phpcs:
26-
directory: src/
26+
directory: rdb/
2727
standard: PSR2
2828
- script:
2929
name: phpunit

0 commit comments

Comments
 (0)