Skip to content

Commit

Permalink
reducing namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Maguire committed Mar 30, 2015
1 parent 622b87c commit b6c42ae
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 19 deletions.
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "stevenmaguire/yelp-php",
"description": "A php client for consumer Yelp API",
"version": "1.0.4",
"version": "1.0.6",
"homepage" : "http://github.com/stevenmaguire/yelp-php",
"authors" : [
{
Expand All @@ -11,19 +11,19 @@
"role" : "Developer"
}
],
"keywords": [
"api",
"oauth1",
"yelp",
"php"
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"guzzle/guzzle": "~3.9",
"guzzlehttp/oauth-subscriber": "0.1.*"
},
"autoload": {
"classmap": [
"tests/TestCase.php"
],
"psr-0": {
"Stevenmaguire\\Yelp\\": "src/"
},
"psr-4": {
"Stevenmaguire\\Yelp\\": "src/"
}
Expand Down
File renamed without changes.
File renamed without changes.
10 changes: 0 additions & 10 deletions tests/TestCase.php

This file was deleted.

4 changes: 2 additions & 2 deletions tests/YelpTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
<?php namespace Stevenmaguire\Yelp\Test;

use Stevenmaguire\Yelp\Client as Yelp;

class YelpTest extends TestCase
class YelpTest extends \PHPUnit_Framework_TestCase
{
public function setUp()
{
Expand Down

0 comments on commit b6c42ae

Please sign in to comment.