Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
agentphoenix committed Jan 13, 2024
1 parent d423f15 commit 0e2817e
Show file tree
Hide file tree
Showing 478 changed files with 7,866 additions and 16,217 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.2]
php: [8.3]
laravel: [10]

services:
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
push:
branches:
- "**"

name: Code Style
jobs:
laravel-pint:
runs-on: ubuntu-latest
container:
image: kirschbaumdevelopment/laravel-test-runner:8.3

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Laravel Pint
run: composer global require laravel/pint

- name: Check Coding Standards
run: pint --test
17 changes: 0 additions & 17 deletions .prettierrc

This file was deleted.

2 changes: 1 addition & 1 deletion .valetphprc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
php@8.2
php@8.3
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@
],
"license": "MIT",
"require": {
"php": "^8.1",
"php": "^8.3",
"anodyne/blade-tabler-icons": "^2.18",
"aws/aws-sdk-php": "^3.293",
"awssat/discord-notification-channel": "^1.4",
"blade-ui-kit/blade-icons": "^1.0",
"denniseilander/pulse-about-application": "^0.1.1",
"filament/forms": "^3.0-stable",
"filament/notifications": "^3.0-stable",
"filament/support": "^3.0-stable",
Expand All @@ -36,7 +35,7 @@
"spatie/laravel-collection-macros": "^7.1",
"spatie/laravel-data": "^3.5",
"spatie/laravel-html": "^3.0",
"spatie/laravel-medialibrary": "^10.0",
"spatie/laravel-medialibrary": "^11.0",
"spatie/laravel-model-states": "^2.1",
"spatie/laravel-ray": "^1.26",
"spatie/once": "^3.0",
Expand All @@ -54,12 +53,10 @@
"brianium/paratest": "^7.0",
"fakerphp/faker": "^1.14",
"itsgoingd/clockwork": "^5.0",
"jasonmccreary/laravel-test-assertions": "^2.0",
"laravel/pint": "^1.8",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^7.0",
"pestphp/pest": "^2.9",
"pestphp/pest-plugin-drift": "^2.2",
"pestphp/pest-plugin-laravel": "^2.1",
"pestphp/pest-plugin-livewire": "^2.1",
"phpunit/phpunit": "^10.0",
Expand Down Expand Up @@ -89,10 +86,12 @@
},
"autoload-dev": {
"psr-4": {
"Tests\\": "nova/tests/"
"Tests\\": "tests/"
}
},
"scripts": {
"lint": "./vendor/bin/pint",
"test": "./vendor/bin/pest",
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan optimize:clear --ansi",
Expand Down Expand Up @@ -120,4 +119,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}
Loading

0 comments on commit 0e2817e

Please sign in to comment.