Skip to content

Commit

Permalink
Merge pull request #20 from MitchBred/master
Browse files Browse the repository at this point in the history
support for laravel 10
  • Loading branch information
jromero98 authored Aug 25, 2023
2 parents f6ebfcf + 6295005 commit ae45ffb
Show file tree
Hide file tree
Showing 6 changed files with 1,897 additions and 969 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Dependency Review Action
#
# This Action will scan dependency manifest files that change as part of a Pull Request, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging.
#
# Source repository: https://github.com/actions/dependency-review-action
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
name: 'Dependency Review'
on: [pull_request]

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
14 changes: 14 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CI

on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Checking PHP syntax error
uses: overtrue/phplint@8.2
with:
path: .
options: --exclude=*.log
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### This fork is to fix the package to be installable on Laravel v9
### This fork is to fix the package to be installable on Laravel v10

### Installation

Expand Down
13 changes: 7 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
"minimum-stability": "dev",
"prefer-stable": false,
"require": {
"php": "^8.0",
"illuminate/console": "^9.0",
"illuminate/cache": "^9.0"
"php": "^8.1",
"illuminate/console": "^10.0.0",
"illuminate/cache": "^10.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.0",
"mockery/mockery": "dev-master",
"illuminate/database": "^9.0"
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.5.1",
"illuminate/database": "^10.0.0",
"overtrue/phplint": "^9.0.3"
},
"autoload": {
"classmap": [
Expand Down
Loading

0 comments on commit ae45ffb

Please sign in to comment.