Skip to content

Commit

Permalink
Merge pull request #21 from MitchBred/master
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
jromero98 authored Mar 6, 2024
2 parents ae45ffb + f67e824 commit 0b0f000
Show file tree
Hide file tree
Showing 6 changed files with 2,554 additions and 2,287 deletions.
10 changes: 7 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
version: 2
updates:
- package-ecosystem: composer
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
rebase-strategy: auto
interval: "weekly"

- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "weekly"
4 changes: 2 additions & 2 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
uses: actions/dependency-review-action@v4
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Checking PHP syntax error
uses: overtrue/phplint@8.2
uses: overtrue/phplint@9.1
with:
path: .
options: --exclude=*.log
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Validate composer.json and composer.lock
run: composer validate --strict

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
Expand Down
75 changes: 72 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,83 @@
"prefer-stable": false,
"require": {
"php": "^8.1",
"doctrine/inflector": "^2.0.8",
"illuminate/bus": "^10.0.0",
"illuminate/cache": "^10.0.0",
"illuminate/collections": "^10.0.0",
"illuminate/conditionable": "^10.0.0",
"illuminate/console": "^10.0.0",
"illuminate/cache": "^10.0.0"
"illuminate/container": "^10.0.0",
"illuminate/contracts": "^10.0.0",
"illuminate/events": "^10.0.0",
"illuminate/filesystem": "^10.0.0",
"illuminate/macroable": "^10.0.0",
"illuminate/pipeline": "^10.0.0",
"illuminate/support": "^10.0.0",
"illuminate/view": "^10.0.0",
"laravel/prompts": "^0.1.13",
"nesbot/carbon": "^2.71.0",
"nunomaduro/termwind": "^1.15.1",
"psr/clock": "^1.0.0",
"psr/container": "^2.0.2",
"psr/simple-cache": "^3.0.0",
"symfony/console": "^6.3.4",
"symfony/deprecation-contracts": "^3.3.0",
"symfony/finder": "^6.3.0",
"symfony/polyfill-ctype": "^1.0.0",
"symfony/polyfill-intl-grapheme": "^1.0.0",
"symfony/polyfill-intl-normalizer": "^1.0.0",
"symfony/polyfill-mbstring": "^1.0.0",
"symfony/polyfill-php80": "^1.0.0",
"symfony/process": "^6.3.0",
"symfony/service-contracts": "^3.3.0",
"symfony/string": "^6.3.0",
"symfony/translation": "^6.3.0",
"symfony/translation-contracts": "^3.3.0",
"voku/portable-ascii": "^2.0.1",
"brick/math": "^0.11.0",
"hamcrest/hamcrest-php": "^2.0.1",
"illuminate/database": "^10.0.0",
"myclabs/deep-copy": "^1.11.0",
"nikic/php-parser": "^4.17.0",
"phar-io/manifest": "^2.0.3",
"phar-io/version": "^3.2.1",
"psr/cache": "^3.0.0",
"psr/event-dispatcher": "^1.0.0",
"psr/log": "^3.0.0",
"sebastian/cli-parser": "^2.0.0",
"sebastian/code-unit": "^2.0.0",
"sebastian/code-unit-reverse-lookup": "^3.0.0",
"sebastian/comparator": "^5.0.0",
"sebastian/complexity": "^3.1.0",
"sebastian/diff": "^5.0.0",
"sebastian/environment": "^6.0.0",
"sebastian/exporter": "^5.1.0",
"sebastian/global-state": "^6.0.0",
"sebastian/lines-of-code": "^2.0.0",
"sebastian/object-enumerator": "^5.0.0",
"sebastian/object-reflector": "^3.0.0",
"sebastian/recursion-context": "^5.0.0",
"sebastian/type": "^4.0.0",
"sebastian/version": "^4.0.0",
"symfony/cache": "^6.3.0",
"symfony/cache-contracts": "^3.3.0",
"symfony/event-dispatcher": "^6.3.0",
"symfony/event-dispatcher-contracts": "^3.3.0",
"symfony/options-resolver": "^6.3.0",
"symfony/var-exporter": "^6.3.0",
"symfony/yaml": "^6.3.0",
"theseer/tokenizer": "^1.2.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.5.1",
"illuminate/database": "^10.0.0",
"overtrue/phplint": "^9.0.3"
"overtrue/phplint": "^9.0.3",
"phpunit/php-code-coverage": "dev-main",
"phpunit/php-file-iterator": "4.1.0",
"phpunit/php-invoker": "dev-main",
"phpunit/php-text-template": "dev-main",
"phpunit/php-timer": "dev-main"
},
"autoload": {
"classmap": [
Expand Down
Loading

0 comments on commit 0b0f000

Please sign in to comment.