diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 91de214..af5e228 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -3,8 +3,6 @@ name: run-tests on: push: pull_request: - schedule: - - cron: '0 0 * * *' jobs: test: diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml deleted file mode 100644 index bdc7d06..0000000 --- a/.github/workflows/stale-issues.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: "Close stale issues" -on: - schedule: - - cron: "0 0 * * *" - -jobs: - default: - timeout-minutes: 1 - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v2.0.0 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'This issue is stale because it has been open 21 days with no activity. Remove stale label or comment or this will be closed in 7 days' - stale-issue-label: 'stale' - exempt-issue-labels: 'bug,enhancement,documentation,help wanted,next release,next major release' - days-before-stale: 21 - days-before-close: 7 - - invalid: - timeout-minutes: 1 - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v2.0.0 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'This issue is stale because it has been labeled as invalid.' - stale-issue-label: 'stale' - only-labels: 'invalid' - days-before-stale: 1 - days-before-close: 2 - - duplicate: - timeout-minutes: 1 - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v2.0.0 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'This issue is stale because it has been labeled as duplicate.' - stale-issue-label: 'stale' - only-labels: 'duplicate' - days-before-stale: 1 - days-before-close: 2 - - wontfix: - timeout-minutes: 1 - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v2.0.0 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'This issue is stale because it has been labeled as wontfix.' - stale-issue-label: 'stale' - only-labels: 'wontfix' - days-before-stale: 1 - days-before-close: 2 diff --git a/composer.json b/composer.json index 0f7a348..aea3b21 100644 --- a/composer.json +++ b/composer.json @@ -28,13 +28,13 @@ }, "require": { "php": "^7.2 || ^8.0", - "illuminate/cache": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0", - "illuminate/contracts": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0", - "illuminate/database": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0" + "illuminate/cache": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0", + "illuminate/contracts": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0", + "illuminate/database": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0" }, "require-dev": { - "illuminate/support": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0", - "orchestra/testbench": "3.8.* || ^4.0 || ^5.0 || ^6.0 || ^7.0", + "illuminate/support": "5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0", + "orchestra/testbench": "3.8.* || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0", "phpunit/phpunit": "^8.3 || ^9.0" }, "prefer-stable": true,