Skip to content

Commit

Permalink
Add travis + add credits
Browse files Browse the repository at this point in the history
  • Loading branch information
dwickstrom committed Dec 17, 2014
1 parent 29dbdb4 commit 3206001
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: php

php:
- 5.4
- 5.5
- 5.6

branches:
only:
- master
before_script:
- composer self-update
- composer install --prefer-source --no-interaction
- sleep 5
script:
- vendor/bin/phpspec run -f dot
1 change: 0 additions & 1 deletion spec/SeoMoz/RequestSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
use SeoMoz\Client\Client;
use SeoMoz\Generator\RequestUrl;
use SeoMoz\Validator\ResponseValidator;
use stdClass;

class RequestSpec extends ObjectBehavior
{
Expand Down
6 changes: 6 additions & 0 deletions src/SeoMoz/Generator/RequestUrl.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

namespace SeoMoz\Generator;

/**
* Class RequestUrl
* @package SeoMoz\Generator
* @author Jon Gotlin
* @author David Wickström
*/
class RequestUrl
{
/**
Expand Down
5 changes: 5 additions & 0 deletions src/SeoMoz/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

namespace SeoMoz;

/**
* Class Response
* @package SeoMoz
* @author Jon Gotlin
*/
final class Response
{
/**
Expand Down

0 comments on commit 3206001

Please sign in to comment.