Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tests #95

Merged
merged 9 commits into from
Oct 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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