From 9cc32d9dd2720b7013ea288f77cdc4d411748fc6 Mon Sep 17 00:00:00 2001 From: James Seconde Date: Fri, 28 Jan 2022 16:29:38 +0000 Subject: [PATCH 1/3] Bump version to target v3, added me as maintainer --- composer.json | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 0605e42..d267c34 100644 --- a/composer.json +++ b/composer.json @@ -4,32 +4,34 @@ "license": "MIT", "type": "library", "authors": [ + { + "name": "James Seconde", + "email": "jim.seconde@vonage.com", + "role": "PHP Developer Advocate", + }, { "name": "Tim Lytle", - "email": "tim@nexmo.com", "role": "Developer", "homepage": "http://twitter.com/tjlytle" }, { "name": "Michael Heap", - "email": "michael.heap@nexmo.com", "role": "Developer", "homepage": "http://twitter.com/mheap" }, { "name": "Chris Tankersley", - "email": "chris.tankersley@nexmo.com", "role": "Developer", "homepage": "http://twitter.com/dragonmantank" } ], "support": { - "email": "devrel@nexmo.com" + "email": "devrel@vonage.com" }, "require": { - "php": "^5.6|^7.1|^8.0", - "illuminate/support": "^5.2|^6.0|^7.0|^8.0", - "vonage/client": "^2.0" + "php": "~7.4 || ~8.0 || ~8.1", + "illuminate/support": "^6.0 || ^7.0 || ^8.0", + "vonage/client": "^3.0" }, "require-dev": { "phpunit/phpunit": "^5.3|~6.0|~8.0|~9.0", From 40b987cc66412920ac877b7e32288a5a400e993d Mon Sep 17 00:00:00 2001 From: James Seconde Date: Fri, 28 Jan 2022 16:36:13 +0000 Subject: [PATCH 2/3] Whoops, fix json parsing error. Also remove unsupported core PHP versions from github build --- .github/workflows/build.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3f0b225..d45daa9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ] + php: [ '7.4', '8.0', '8.1' ] continue-on-error: ${{ matrix.php == '8.1' }} name: PHP ${{ matrix.php }} Test diff --git a/composer.json b/composer.json index d267c34..4d63866 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ { "name": "James Seconde", "email": "jim.seconde@vonage.com", - "role": "PHP Developer Advocate", + "role": "PHP Developer Advocate" }, { "name": "Tim Lytle", From 282adc49fdd59898db0781aaa7c52eb4909258c6 Mon Sep 17 00:00:00 2001 From: James Seconde Date: Mon, 31 Jan 2022 10:10:22 +0000 Subject: [PATCH 3/3] Fix deps --- composer.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 4d63866..3d3e907 100644 --- a/composer.json +++ b/composer.json @@ -6,8 +6,8 @@ "authors": [ { "name": "James Seconde", - "email": "jim.seconde@vonage.com", - "role": "PHP Developer Advocate" + "role": "PHP Developer Advocate", + "email": "jim.seconde@vonage.com" }, { "name": "Tim Lytle", @@ -26,11 +26,11 @@ } ], "support": { - "email": "devrel@vonage.com" + "email": "devrel@nexmo.com" }, "require": { - "php": "~7.4 || ~8.0 || ~8.1", - "illuminate/support": "^6.0 || ^7.0 || ^8.0", + "php": "^7.4|^8.0|^8.1", + "illuminate/support": "^5.2|^6.0|^7.0|^8.0", "vonage/client": "^3.0" }, "require-dev": { @@ -59,5 +59,10 @@ }, "scripts": { "test": "phpunit" + }, + "config": { + "allow-plugins": { + "kylekatarnls/update-helper": true + } } }