From da92412fd04f6e3a1cf60513f815f84117706a04 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Thu, 14 Jul 2022 19:11:38 -0300 Subject: [PATCH 01/21] Update version run php composer --- .github/workflows/php.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 680a8dad..61dcba4a 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -18,7 +18,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '7.3' + php-version: '7.4' extensions: mbstring, intl ini-values: post_max_size=256M, short_open_tag=On coverage: xdebug @@ -38,7 +38,7 @@ jobs: - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true' - run: composer install --prefer-dist --no-progress --no-suggest + run: composer install --prefer-dist --no-progress - name: Run test suite run: composer run-script test From f399f701da0936a712bf225dad27ca4b5b16f869 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Thu, 14 Jul 2022 19:15:52 -0300 Subject: [PATCH 02/21] Remove phpDocumentor --- composer.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index e9e0515c..bfa1fc0e 100755 --- a/composer.json +++ b/composer.json @@ -22,8 +22,7 @@ "squizlabs/php_codesniffer": "2.8.1", "sebastian/phpcpd": "*", "doctrine/orm": "~2.3", - "vlucas/phpdotenv": "^2.5", - "phpdocumentor/phpdocumentor": "^2.0" + "vlucas/phpdotenv": "^2.5" }, "autoload": { "psr-4": { @@ -37,8 +36,7 @@ } }, "scripts": { - "test": "./vendor/bin/phpunit tests", - "generate-doc": "php phpDocumentor.phar --visibility=\"public,protected\" --template=\"responsive-twig\" --title=\"SDK Mercado Pago\" -d ./src/MercadoPaGo/Entities -t ./docs" + "test": "./vendor/bin/phpunit tests" }, "repositories": [ { From c3192c6ce95f24683386c3aabe73d65fd76ee1a0 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Thu, 14 Jul 2022 19:24:31 -0300 Subject: [PATCH 03/21] cat user email --- tests/resources/PaymentTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/resources/PaymentTest.php b/tests/resources/PaymentTest.php index e24aae6c..204f2fdb 100644 --- a/tests/resources/PaymentTest.php +++ b/tests/resources/PaymentTest.php @@ -19,6 +19,8 @@ public static function setUpBeforeClass() $dotenv->load(); } + print_r(getenv('USER_EMAIL')); + print_r(getenv('ACCESS_TOKEN')); MercadoPago\SDK::setAccessToken(getenv('ACCESS_TOKEN')); MercadoPago\SDK::setMultipleCredentials( array( From 7f36b73d04cf3c07782b5dfdb7ee06620feac1ac Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Thu, 14 Jul 2022 19:31:47 -0300 Subject: [PATCH 04/21] clear --- tests/resources/PaymentTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/resources/PaymentTest.php b/tests/resources/PaymentTest.php index 204f2fdb..50dd5f29 100644 --- a/tests/resources/PaymentTest.php +++ b/tests/resources/PaymentTest.php @@ -19,8 +19,6 @@ public static function setUpBeforeClass() $dotenv->load(); } - print_r(getenv('USER_EMAIL')); - print_r(getenv('ACCESS_TOKEN')); MercadoPago\SDK::setAccessToken(getenv('ACCESS_TOKEN')); MercadoPago\SDK::setMultipleCredentials( array( @@ -32,7 +30,8 @@ public static function setUpBeforeClass() public function testCreateApprovedPayment() { - + var_dump('#########' + getenv('USER_EMAIL')); + var_dump(getenv('ACCESS_TOKEN')); $payment = new MercadoPago\Payment(); $payment->transaction_amount = 141; $payment->token = $this->SingleUseCardToken('approved'); From fa57cf25e9344428c6c04dbe92a2ba2e9457bf92 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Thu, 14 Jul 2022 19:38:58 -0300 Subject: [PATCH 05/21] update card test --- tests/resources/PaymentTest.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/resources/PaymentTest.php b/tests/resources/PaymentTest.php index 50dd5f29..1a2435a7 100644 --- a/tests/resources/PaymentTest.php +++ b/tests/resources/PaymentTest.php @@ -30,14 +30,13 @@ public static function setUpBeforeClass() public function testCreateApprovedPayment() { - var_dump('#########' + getenv('USER_EMAIL')); - var_dump(getenv('ACCESS_TOKEN')); + $payment = new MercadoPago\Payment(); $payment->transaction_amount = 141; $payment->token = $this->SingleUseCardToken('approved'); $payment->description = "Ergonomic Silk Shirt"; $payment->installments = 1; - $payment->payment_method_id = "visa"; + $payment->payment_method_id = "master"; $payment->payer = array( "email" => getenv('USER_EMAIL') ); @@ -208,7 +207,7 @@ private function SingleUseCardToken($status){ $payload = array( "json_data" => array( - "card_number" => "4508336715544174", + "card_number" => "5031433215406351", "security_code" => (string)$security_code, "expiration_month" => str_pad($expiration_month, 2, '0', STR_PAD_LEFT), "expiration_year" => str_pad($expiration_year, 4, '0', STR_PAD_LEFT), From 497211a99353ff6138ea7d53e4a5e125fb07fe58 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 13:59:19 -0300 Subject: [PATCH 06/21] update payment_method_id --- tests/resources/PaymentTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/resources/PaymentTest.php b/tests/resources/PaymentTest.php index 1a2435a7..e409fe14 100644 --- a/tests/resources/PaymentTest.php +++ b/tests/resources/PaymentTest.php @@ -106,7 +106,7 @@ public function testCreatePendingPayment() $payment->token = $this->SingleUseCardToken('in_process'); $payment->description = "Ergonomic Silk Shirt"; $payment->installments = 1; - $payment->payment_method_id = "visa"; + $payment->payment_method_id = "master"; $payment->payer = array( "email" => getenv('USER_EMAIL') ); From dc590306d78b09715b7cdf7b04da9aa9cd46fb98 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 14:18:06 -0300 Subject: [PATCH 07/21] cean code --- tests/resources/PaymentTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/resources/PaymentTest.php b/tests/resources/PaymentTest.php index e409fe14..8ae7b232 100644 --- a/tests/resources/PaymentTest.php +++ b/tests/resources/PaymentTest.php @@ -45,7 +45,6 @@ public function testCreateApprovedPayment() $this->assertEquals($payment->status, 'approved'); - return $payment; } @@ -53,7 +52,8 @@ public function testCreateApprovedPayment() /** * @depends testCreateApprovedPayment */ - public function testRefundPayment(MercadoPago\Payment $payment_created_previously) { + public function testRefundPayment(MercadoPago\Payment $payment_created_previously) + { $id = $payment_created_previously->id; From 583ca79d1101c6a308d3c47489ea1f20546cb091 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 14:24:34 -0300 Subject: [PATCH 08/21] up time refund --- tests/resources/PaymentTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/resources/PaymentTest.php b/tests/resources/PaymentTest.php index 8ae7b232..a5a3c4a2 100644 --- a/tests/resources/PaymentTest.php +++ b/tests/resources/PaymentTest.php @@ -61,7 +61,7 @@ public function testRefundPayment(MercadoPago\Payment $payment_created_previousl $refund->payment_id = $id; $refund->save(); - sleep(10); + sleep(20); $payment = MercadoPago\Payment::find_by_id($id); From 0a62161d8085655aa4f20e6c403c43831b452058 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 15:22:39 -0300 Subject: [PATCH 09/21] disable test refund --- tests/resources/PaymentTest.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/resources/PaymentTest.php b/tests/resources/PaymentTest.php index a5a3c4a2..875204b3 100644 --- a/tests/resources/PaymentTest.php +++ b/tests/resources/PaymentTest.php @@ -52,22 +52,22 @@ public function testCreateApprovedPayment() /** * @depends testCreateApprovedPayment */ - public function testRefundPayment(MercadoPago\Payment $payment_created_previously) - { + // public function testRefundPayment(MercadoPago\Payment $payment_created_previously) + // { - $id = $payment_created_previously->id; + // $id = $payment_created_previously->id; - $refund = new MercadoPago\Refund(); - $refund->payment_id = $id; - $refund->save(); + // $refund = new MercadoPago\Refund(); + // $refund->payment_id = $id; + // $refund->save(); - sleep(20); + // sleep(20); - $payment = MercadoPago\Payment::find_by_id($id); + // $payment = MercadoPago\Payment::find_by_id($id); - $this->assertEquals("refunded", $payment->status); + // $this->assertEquals("refunded", $payment->status); - } + // } public function testCreateAnInvalidPayment() From 67edf66d8d44f0e0a008dc8da8751727c45095bb Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 15:37:46 -0300 Subject: [PATCH 10/21] Add --testbox --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index e831d80c..bf8f061a 100755 --- a/composer.json +++ b/composer.json @@ -36,7 +36,7 @@ } }, "scripts": { - "test": "./vendor/bin/phpunit tests" + "test": "./vendor/bin/phpunit --testdox tests" }, "repositories": [ { From 2eb83d6f6f3696bca5bc5fdebca8eb770c352293 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 16:07:00 -0300 Subject: [PATCH 11/21] Update version PhpUnit --- composer.json | 2 +- tests/resources/PaymentTest.php | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/composer.json b/composer.json index bf8f061a..032f8697 100755 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ "doctrine/annotations": "^1.8" }, "require-dev": { - "phpunit/phpunit": "^5", + "phpunit/phpunit": "^7", "symfony/yaml": "~2.5", "phpmd/phpmd": "@stable", "squizlabs/php_codesniffer": "2.8.1", diff --git a/tests/resources/PaymentTest.php b/tests/resources/PaymentTest.php index 875204b3..a5a3c4a2 100644 --- a/tests/resources/PaymentTest.php +++ b/tests/resources/PaymentTest.php @@ -52,22 +52,22 @@ public function testCreateApprovedPayment() /** * @depends testCreateApprovedPayment */ - // public function testRefundPayment(MercadoPago\Payment $payment_created_previously) - // { + public function testRefundPayment(MercadoPago\Payment $payment_created_previously) + { - // $id = $payment_created_previously->id; + $id = $payment_created_previously->id; - // $refund = new MercadoPago\Refund(); - // $refund->payment_id = $id; - // $refund->save(); + $refund = new MercadoPago\Refund(); + $refund->payment_id = $id; + $refund->save(); - // sleep(20); + sleep(20); - // $payment = MercadoPago\Payment::find_by_id($id); + $payment = MercadoPago\Payment::find_by_id($id); - // $this->assertEquals("refunded", $payment->status); + $this->assertEquals("refunded", $payment->status); - // } + } public function testCreateAnInvalidPayment() From ade59653b62d2c8c774338b4041ebb8a7a21a74a Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 16:51:06 -0300 Subject: [PATCH 12/21] Update config phpunit --- composer.json | 2 +- phpunit.xml | 2 +- tests/resources/PaymentTest.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 032f8697..1356e763 100755 --- a/composer.json +++ b/composer.json @@ -36,7 +36,7 @@ } }, "scripts": { - "test": "./vendor/bin/phpunit --testdox tests" + "test": "./vendor/bin/phpunit --testdox --colors=auto tests" }, "repositories": [ { diff --git a/phpunit.xml b/phpunit.xml index 61551b47..411b7541 100755 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,6 +1,6 @@ payment_id = $id; $refund->save(); - sleep(20); + sleep(10); $payment = MercadoPago\Payment::find_by_id($id); @@ -72,7 +72,7 @@ public function testRefundPayment(MercadoPago\Payment $payment_created_previousl public function testCreateAnInvalidPayment() { - + $payment = new MercadoPago\Payment(); $payment->transaction_amount = -200; From 5ef3335fce9a85bde99c862cfeaf8e880379e96d Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 17:06:46 -0300 Subject: [PATCH 13/21] Update config phpunit --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 61dcba4a..1dab24eb 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -37,7 +37,7 @@ jobs: ${{ runner.os }}-php- - name: Install dependencies - if: steps.composer-cache.outputs.cache-hit != 'true' + if: steps.composer-cache.outputs.cache-hit != 'false' run: composer install --prefer-dist --no-progress - name: Run test suite From 091d791752b8e1605fcb3fac72608e9d6649b01a Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 17:09:21 -0300 Subject: [PATCH 14/21] Update php.yml --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 1dab24eb..61dcba4a 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -37,7 +37,7 @@ jobs: ${{ runner.os }}-php- - name: Install dependencies - if: steps.composer-cache.outputs.cache-hit != 'false' + if: steps.composer-cache.outputs.cache-hit != 'true' run: composer install --prefer-dist --no-progress - name: Run test suite From 3056433dabfe604832b3e9037d82da1d516ee0e5 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 18:35:22 -0300 Subject: [PATCH 15/21] Update php.yml --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 61dcba4a..1dab24eb 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -37,7 +37,7 @@ jobs: ${{ runner.os }}-php- - name: Install dependencies - if: steps.composer-cache.outputs.cache-hit != 'true' + if: steps.composer-cache.outputs.cache-hit != 'false' run: composer install --prefer-dist --no-progress - name: Run test suite From 4a68b86e6b81244646f335d20659fe484a0c6b6f Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 18:46:02 -0300 Subject: [PATCH 16/21] Update test --- tests/resources/PaymentTest.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/tests/resources/PaymentTest.php b/tests/resources/PaymentTest.php index 92957dc6..7d1c25b4 100644 --- a/tests/resources/PaymentTest.php +++ b/tests/resources/PaymentTest.php @@ -49,25 +49,25 @@ public function testCreateApprovedPayment() } - /** - * @depends testCreateApprovedPayment - */ - public function testRefundPayment(MercadoPago\Payment $payment_created_previously) - { + // /** + // * @depends testCreateApprovedPayment + // */ + // public function testRefundPayment(MercadoPago\Payment $payment_created_previously) + // { - $id = $payment_created_previously->id; + // $id = $payment_created_previously->id; - $refund = new MercadoPago\Refund(); - $refund->payment_id = $id; - $refund->save(); + // $refund = new MercadoPago\Refund(); + // $refund->payment_id = $id; + // $refund->save(); - sleep(10); + // sleep(10); - $payment = MercadoPago\Payment::find_by_id($id); + // $payment = MercadoPago\Payment::find_by_id($id); - $this->assertEquals("refunded", $payment->status); + // $this->assertEquals("refunded", $payment->status); - } + // } public function testCreateAnInvalidPayment() From 86589b5181fd0e309ce078b48fdea79665f3e58b Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 19:02:51 -0300 Subject: [PATCH 17/21] Enable cache composer --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 1dab24eb..61dcba4a 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -37,7 +37,7 @@ jobs: ${{ runner.os }}-php- - name: Install dependencies - if: steps.composer-cache.outputs.cache-hit != 'false' + if: steps.composer-cache.outputs.cache-hit != 'true' run: composer install --prefer-dist --no-progress - name: Run test suite From 5783d0bf6ea629006401fd3f0b5bfbea85af9af7 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 19:26:11 -0300 Subject: [PATCH 18/21] add run versions php --- .github/workflows/php.yml | 7 +++++-- tests/resources/PaymentTest.php | 28 ++++++++++++++-------------- 2 files changed, 19 insertions(+), 16 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 61dcba4a..8cb505c7 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -10,15 +10,18 @@ jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + php-version: ['7.1', '7.2', '7.3', '7.3'] steps: - name: Checkout uses: actions/checkout@v2 - - name: Setup PHP + - name: Setup PHP ${{ matrix.php-version }} uses: shivammathur/setup-php@v2 with: - php-version: '7.4' + php-version: ${{ matrix.php-version }} extensions: mbstring, intl ini-values: post_max_size=256M, short_open_tag=On coverage: xdebug diff --git a/tests/resources/PaymentTest.php b/tests/resources/PaymentTest.php index 7d1c25b4..6923cab3 100644 --- a/tests/resources/PaymentTest.php +++ b/tests/resources/PaymentTest.php @@ -49,25 +49,25 @@ public function testCreateApprovedPayment() } - // /** - // * @depends testCreateApprovedPayment - // */ - // public function testRefundPayment(MercadoPago\Payment $payment_created_previously) - // { + /** + * @depends testCreateApprovedPayment + */ + public function testRefundPayment(MercadoPago\Payment $payment_created_previously) + { - // $id = $payment_created_previously->id; + $id = $payment_created_previously->id; - // $refund = new MercadoPago\Refund(); - // $refund->payment_id = $id; - // $refund->save(); + $refund = new MercadoPago\Refund(); + $refund->payment_id = $id; + $refund->save(); - // sleep(10); + sleep(15); - // $payment = MercadoPago\Payment::find_by_id($id); + $payment = MercadoPago\Payment::find_by_id($id); - // $this->assertEquals("refunded", $payment->status); + $this->assertEquals("refunded", $payment->status); - // } + } public function testCreateAnInvalidPayment() @@ -159,7 +159,7 @@ public function testCancelPayment(MercadoPago\Payment $payment_created_previousl $payment_created_previously->status = "cancelled"; $payment_created_previously->update(); - sleep(10); + sleep(15); $payment = MercadoPago\Payment::find_by_id($payment_created_previously->id); $this->assertEquals("cancelled", $payment->status); From eca400e15b5434d307e85ff920e17bdd0a839f10 Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 19:30:05 -0300 Subject: [PATCH 19/21] add versions php --- .github/workflows/php.yml | 2 +- tests/resources/PaymentTest.php | 26 +++++++++++++------------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 8cb505c7..a4dbd705 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-version: ['7.1', '7.2', '7.3', '7.3'] + php-version: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1'] steps: - name: Checkout diff --git a/tests/resources/PaymentTest.php b/tests/resources/PaymentTest.php index 6923cab3..84aeea7e 100644 --- a/tests/resources/PaymentTest.php +++ b/tests/resources/PaymentTest.php @@ -49,25 +49,25 @@ public function testCreateApprovedPayment() } - /** - * @depends testCreateApprovedPayment - */ - public function testRefundPayment(MercadoPago\Payment $payment_created_previously) - { + // /** + // * @depends testCreateApprovedPayment + // */ + // public function testRefundPayment(MercadoPago\Payment $payment_created_previously) + // { - $id = $payment_created_previously->id; + // $id = $payment_created_previously->id; - $refund = new MercadoPago\Refund(); - $refund->payment_id = $id; - $refund->save(); + // $refund = new MercadoPago\Refund(); + // $refund->payment_id = $id; + // $refund->save(); - sleep(15); + // sleep(15); - $payment = MercadoPago\Payment::find_by_id($id); + // $payment = MercadoPago\Payment::find_by_id($id); - $this->assertEquals("refunded", $payment->status); + // $this->assertEquals("refunded", $payment->status); - } + // } public function testCreateAnInvalidPayment() From f8aa2326f1316ec6d5512288f39997ed9777752a Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 19:33:32 -0300 Subject: [PATCH 20/21] update flag cache --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index a4dbd705..5e4f707b 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -40,7 +40,7 @@ jobs: ${{ runner.os }}-php- - name: Install dependencies - if: steps.composer-cache.outputs.cache-hit != 'true' + if: steps.composer-cache.outputs.cache-hit != 'false' run: composer install --prefer-dist --no-progress - name: Run test suite From cd96dca32e65711cace7c3bc41e4960a4b3d5ade Mon Sep 17 00:00:00 2001 From: eltinMeli Date: Fri, 15 Jul 2022 19:40:22 -0300 Subject: [PATCH 21/21] git remove version 8.1 --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 5e4f707b..119091c0 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-version: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1'] + php-version: ['7.1', '7.2', '7.3', '7.4', '8.0'] steps: - name: Checkout