Skip to content

Commit

Permalink
Reorganizing directory structure so project can be included in other …
Browse files Browse the repository at this point in the history
…projects with PSR-0 compliance.
  • Loading branch information
deceze committed Oct 24, 2012
1 parent 2ed08b6 commit bbc7bef
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ $rison = Kunststube\Rison\rison_encode($data);
var_dump($rison);
```

PSR-0
-----

The repository is organized so its contents can be dumped into a folder `Kunststube/Rison/` and the naming be PSR-0 compliant.

Information
-----------

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions tests/Rison/RisonDecoderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

use Kunststube\Rison as R;

require_once 'Rison/RisonDecoder.php';
require_once 'Rison/rison_functions.php';
require_once 'RisonDecoder.php';
require_once 'rison_functions.php';


class RisonDecoderTest extends PHPUnit_Framework_TestCase {
Expand Down
2 changes: 1 addition & 1 deletion tests/Rison/RisonEncoderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use Kunststube\Rison as R;

require_once 'Rison/RisonEncoder.php';
require_once 'RisonEncoder.php';


class RisonEncoderTest extends PHPUnit_Framework_TestCase {
Expand Down

0 comments on commit bbc7bef

Please sign in to comment.