Skip to content

Commit

Permalink
⬆️ Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Nov 29, 2023
1 parent faae795 commit ff8bc1f
Show file tree
Hide file tree
Showing 6 changed files with 2,743 additions and 1,188 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.1, 8.2]
node: [18.0, 20.0]
php: [8.1, 8.2, 8.3]
node: [20.10.0]
dependencies: [lowest, highest]
experimental: [false]
name: 👷 CI PHP-${{ matrix.php }} ${{ matrix.dependencies }} with Node-${{ matrix.node }} on ${{ matrix.os }}
Expand Down
47 changes: 23 additions & 24 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
{
"$schema": "./node_modules/rome/configuration_schema.json",
"organizeImports": {
"enabled": true,
"ignore": ["node_modules", "vendor", "dist"]
"$schema": "./node_modules/rome/configuration_schema.json",
"organizeImports": {
"enabled": true,
"ignore": ["node_modules", "vendor", "dist"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"useBlockStatements": "error",
"useShorthandArrayType": "error",
"noShoutyConstants": "warn"
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"useBlockStatements": "error",
"useShorthandArrayType": "error",
"noShoutyConstants": "warn"
}
},
"ignore": ["node_modules", "vendor", "dist"]
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentSize": 4,
"lineWidth": 80,
"ignore": ["node_modules", "vendor", "dist"]
}
"ignore": ["node_modules", "vendor", "dist"]
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"lineWidth": 80,
"ignore": ["node_modules", "vendor", "dist"]
}
}
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
"chat": "https://github.com/orgs/sikessem/discussions"
},
"require": {
"php": "^8.1||^8.2",
"illuminate/view": "^10.26"
"php": ">=8.1",
"illuminate/view": "^10.34.0"
},
"require-dev": {
"sikessem/framework": "^0.2.0",
"sikessem/laravel-devtools": "^0.6.1"
"sikessem/laravel-devtools": "^0.8.0"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -77,7 +77,8 @@
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
Expand Down
Loading

0 comments on commit ff8bc1f

Please sign in to comment.