Skip to content

Commit 445d57f

Browse files
authored
L13 (#4)
* Add support for L13 * Update github action * Workflow should run on push
1 parent 2d89b11 commit 445d57f

3 files changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/php.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: PHP Composer
22

3-
on:
4-
push:
5-
branches: ["master"]
6-
pull_request:
7-
branches: ["master"]
3+
on: [push]
84

95
permissions:
106
contents: read
@@ -31,11 +27,11 @@ jobs:
3127
- name: Install dependencies
3228
uses: php-actions/composer@v6
3329
with:
34-
php_version: "8.2"
30+
php_version: "8.3"
3531

3632
- name: Run tests
3733
uses: php-actions/composer@v6
3834
with:
3935
command: test
40-
php_version: "8.2"
36+
php_version: "8.3"
4137
php_extensions: xdebug

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ docs
44
vendor
55
coverage
66
.phpunit.cache
7+
.idea

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
],
1818
"require": {
1919
"php": "^8.2",
20-
"illuminate/support": "^11.0|^12.0"
20+
"illuminate/support": "^12.0|^13.0"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "^9.0|^10.0",
24-
"phpunit/phpunit": "^11.0"
23+
"orchestra/testbench": "^10.0|^11.0",
24+
"phpunit/phpunit": "^11.5"
2525
},
2626
"autoload": {
2727
"psr-4": {

0 commit comments

Comments
 (0)