Skip to content

Commit dc6e37e

Browse files
committed
🚧 what if we dropped 8.0 to get enums
1 parent 15d895d commit dc6e37e

4 files changed

Lines changed: 9 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
php: ["8.0", 8.1, 8.2, 8.3]
12-
symfony_process: [7]
13-
exclude:
14-
- php: "8.0"
15-
symfony_process: 7
16-
- php: 8.1
17-
symfony_process: 7
11+
php: [8.1, 8.2, 8.3]
12+
symfony_process: [4, 5, 6, 7]
13+
# exclude:
14+
# - php: 8.1
15+
# symfony_process: 7
1816

1917
steps:
2018
- uses: actions/checkout@v4

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PHP_VERSION=8.0
1+
ARG PHP_VERSION=8.1
22
FROM php:$PHP_VERSION-cli-alpine
33

44
RUN apk add git zip unzip autoconf make g++

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^8.0|^8.1",
13+
"php": "^8.1",
1414
"symfony/process": "~4.0 || ~5.0 || ~6.0 || ~7.0",
1515
"guzzlehttp/guzzle": "^6.3 || ^7.0"
1616
},

src/Browserless/Client.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ trait Client
2121
*/
2222
private $apiUrl = 'https://chrome.browserless.io';
2323

24-
public const EUROPE_REGION_URL = 'production-lon.browserless.io';
24+
// public const EUROPE_REGION_URL = 'production-lon.browserless.io';
2525

26-
public const US_REGION_URL = 'production-sfo.browserless.io';
26+
// public const US_REGION_URL = 'production-sfo.browserless.io';
2727

2828
/**
2929
* @param string $apiKey api key from browserless.io

0 commit comments

Comments
 (0)