Skip to content

Commit

Permalink
Merge pull request #95 from syntaxerrors/fix-tests
Browse files Browse the repository at this point in the history
Fix tests
  • Loading branch information
nicekiwi authored Oct 9, 2019
2 parents 61323d3 + 5405718 commit 82f5dca
Show file tree
Hide file tree
Showing 8 changed files with 2,980 additions and 1,178 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: php

php:
- 7.3
- 7.2
- 7.1
- 7.0

notifications:
slack: nukacode:HyFrc2QLi5PC5fPxadm07O5v
Expand Down
14 changes: 4 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
[![Total Downloads](https://poser.pugx.org/syntax/steam-api/downloads.svg)](https://packagist.org/packages/syntax/steam-api)
[![License](https://poser.pugx.org/syntax/steam-api/license.svg)](https://packagist.org/packages/syntax/steam-api)

**For Laravel 4, checkout the documentation on the [Laravel 4 branch](https://github.com/syntaxerrors/Steam/tree/Laravel4).**
**Version Support**
`Laravel >= 5.8.0`
`PHP >= 7.2.0`

- [Installation](#installation)
- [Usage](#usage)
Expand All @@ -27,7 +29,7 @@ This package provides an easy way to get details from the Steam API service. Th
Begin by installing this package with composer.

"require": {
"syntax/steam-api": "2.0.*"
"syntax/steam-api": "2.1.*"
}

Next, update composer from the terminal.
Expand All @@ -36,14 +38,6 @@ Next, update composer from the terminal.

> Alternately, you can run "composer require syntax/steam-api:dev-master" from the command line.
> **Note**: If you are using Laravel 5.5, the next steps are unnecessary. This package supports Laravel [Package Discovery](https://laravel.com/docs/5.5/packages#package-discovery).
Once that is finished, add the service provider to `config/app.php`

'Syntax\SteamApi\SteamApiServiceProvider',

> The alias to Steam is already handled by the package.
Lastly, publish the config file. You can get your API key from [Steam](http://steamcommunity.com/dev/apikey).

php artisan vendor:publish
Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "syntax/steam-api",
"description": "A steam-api client for Laravel 5.",
"version": "2.0.16",
"description": "A steam-api client for Laravel 5.8+",
"version": "2.1.0",
"license": "MIT",
"authors": [
{
Expand All @@ -10,15 +10,14 @@
}
],
"require": {
"php": ">=5.5.0",
"laravel/framework": "^5.0",
"php": "^7.2.0",
"laravel/framework": ">=5.8.0",
"guzzlehttp/guzzle": "^6.0",
"nukacode/database": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~3.0",
"mockery/mockery": "0.9.3",
"orchestra/testbench": "~3.0"
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "^3.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 82f5dca

Please sign in to comment.