Skip to content

Commit ba41d21

Browse files
authored
Merge pull request #12 from codebar-ag/feature-update
Feature Update
2 parents 67aa803 + 99d5dfc commit ba41d21

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.github/workflows/phpstan.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
name: PHPStan
22

33
on:
4-
pull_request:
5-
paths:
6-
- '**.php'
7-
- 'phpstan.neon.dist'
84
push:
9-
paths:
10-
- '**.php'
11-
- 'phpstan.neon.dist'
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
128

139
jobs:
1410
phpstan:
@@ -27,4 +23,4 @@ jobs:
2723
uses: ramsey/composer-install@v2
2824

2925
- name: Run PHPStan
30-
run: ./vendor/bin/phpstan analyse src --error-format=github
26+
run: ./vendor/bin/phpstan analyse src --error-format=github

.github/workflows/run-tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
fail-fast: true
14+
max-parallel: 1
1415
matrix:
1516
os: [ ubuntu-latest, windows-latest ]
1617
php: [ 8.2 ]

composer.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,15 @@
1515
"email": "[email protected]",
1616
"homepage": "https://www.codebar.ch",
1717
"role": "Developer"
18+
},
19+
{
20+
"name": "Rhys Lees",
21+
"role": "Software-Developer"
1822
}
1923
],
2024
"require": {
2125
"php": "^8.2",
22-
"guzzlehttp/guzzle": "^7.2",
26+
"guzzlehttp/guzzle": "^7.5",
2327
"illuminate/contracts": "^10.0",
2428
"laravel/framework": "10.*",
2529
"orchestra/testbench": "8.*",
@@ -33,6 +37,7 @@
3337
"laravel/pint": "^1.5",
3438
"nunomaduro/collision": "^7.0",
3539
"nunomaduro/larastan": "^2.4.0",
40+
"orchestra/testbench": "^8.0",
3641
"pestphp/pest": "^2.0",
3742
"pestphp/pest-plugin-laravel": "^2.0",
3843
"phpstan/extension-installer": "^1.1",

0 commit comments

Comments
 (0)