Skip to content

Commit

Permalink
Update dependencies and minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
calliostro committed Jan 3, 2024
1 parent f8ab251 commit e8badf4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ matrix:
fast_finish: true
include:
# Minimum supported dependencies with the latest and oldest PHP version
- php: 8.2
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER=disabled=1"
- php: 8.1
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER=disabled=1"
- php: 8.0
Expand All @@ -26,6 +28,8 @@ matrix:
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="disabled=1"

# Test the latest stable release
- php: 8.2
env: COVERAGE=true PHPUNIT_FLAGS="-v --coverage-text"
- php: 8.1
env: COVERAGE=true PHPUNIT_FLAGS="-v --coverage-text"
- php: 8.0
Expand All @@ -36,7 +40,7 @@ matrix:
env: SYMFONY_DEPRECATIONS_HELPER="max[direct]=0"

# Latest commit to master
- php: 8.1
- php: 8.2
env: STABILITY="dev"

allow_failures:
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Spotify Web API Bundle
======================

[![Build Status](https://app.travis-ci.com/calliostro/spotify-web-api-bundle.svg?branch=main)](https://www.travis-ci.com/github/calliostro/spotify-web-api-bundle)
[![Version](https://poser.pugx.org/calliostro/spotify-web-api-bundle/version)](//packagist.org/packages/calliostro/spotify-web-api-bundle)
[![License](https://poser.pugx.org/calliostro/spotify-web-api-bundle/license)](//packagist.org/packages/calliostro/spotify-web-api-bundle)

Expand Down
16 changes: 10 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,29 @@
"description": "Spotify Web API client for Symfony 5, Symfony 6 and Symfony 7",
"type": "symfony-bundle",
"require": {
"php": "^7.3 || ^8.0 || ^8.2",
"jwilsson/spotify-web-api-php": "^5.0 || ^6.0",
"symfony/config": "^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.0 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.0 || ^6.0 || ^7.0"
"php": "^7.3|^8.0|^8.1|^8.2",
"jwilsson/spotify-web-api-php": "^5.0|^6.0",
"symfony/config": "^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^5.0|^6.0|^7.0",
"symfony/http-kernel": "^5.0|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Calliostro\\SpotifyWebApiBundle\\": "src/"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0 || ^6.0 || ^7.0"
"symfony/phpunit-bridge": "^5.0|^6.0|^7.0",
"phpunit/phpunit": "*"
},
"autoload-dev": {
"psr-4": {
"Calliostro\\SpotifyWebApiBundle\\Tests\\": "tests/"
}
},
"scripts":{
"test": "phpunit tests"
},
"license": "MIT",
"authors": [
{
Expand Down

0 comments on commit e8badf4

Please sign in to comment.