Skip to content

Commit

Permalink
Merge pull request #12 from jcroll/psr4
Browse files Browse the repository at this point in the history
[RFC] PSR 4
  • Loading branch information
jcroll authored Aug 25, 2016
2 parents c8546b6 + 9488801 commit 1a7ac74
Show file tree
Hide file tree
Showing 6 changed files with 1,056 additions and 48 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm

before_script: composer install --dev
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,16 @@
}
],
"require": {
"guzzlehttp/guzzle": "~3.8"
"php": ">=5.3.3",
"guzzlehttp/guzzle": ">=3.7 <4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"autoload": {
"psr-0": {
"Jcroll\\FoursquareApiClient": "lib/",
"Jcroll\\FoursquareApiClient\\Tests": "tests/"
"psr-4": {
"Jcroll\\FoursquareApiClient\\": "src/",
"Jcroll\\FoursquareApiClient\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
Expand Down
Loading

0 comments on commit 1a7ac74

Please sign in to comment.