Skip to content

Commit dded67e

Browse files
Merge pull request #12 from hexadog/develop
Bump dependencies for Laravel 10
2 parents 97ed4c2 + c3be022 commit dded67e

19 files changed

+222
-600
lines changed

.github/workflows/php-cs-fixer.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/php-linting.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: PHP Linting (Pint)
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
7+
jobs:
8+
phplint:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
with:
13+
fetch-depth: 2
14+
- name: "laravel-pint"
15+
uses: aglipanci/[email protected]
16+
with:
17+
preset: laravel
18+
19+
- name: Commit changes
20+
uses: stefanzweifel/git-auto-commit-action@v4
21+
with:
22+
commit_message: PHP Linting (Pint)
23+
skip_fetch: true

.php-cs-fixer.dist.php

Lines changed: 0 additions & 27 deletions
This file was deleted.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"symfony/finder": "^5.1|^6.0"
1919
},
2020
"require-dev": {
21-
"friendsofphp/php-cs-fixer": "^3.1",
2221
"phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0",
23-
"orchestra/testbench": "~5.2|^7.1|^8.0"
22+
"orchestra/testbench": "~5.2|^7.1|^8.0",
23+
"laravel/pint": "^1.10"
2424
},
2525
"autoload": {
2626
"psr-4": {

0 commit comments

Comments
 (0)