-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump dependencies for Laravel 11 * Update GitHub Actions for Laravel 11
- Loading branch information
1 parent
8cffa8e
commit 419e60e
Showing
3 changed files
with
111 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,16 @@ name: gen-docs | |
|
||
on: | ||
workflow_dispatch: | ||
# push: | ||
# tags: | ||
# - '*' | ||
|
||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: true | ||
matrix: | ||
php: [8.0] | ||
php: [8.0, '8.2'] | ||
|
||
name: Docs P${{ matrix.php }} | ||
|
||
steps: | ||
|
@@ -38,6 +37,6 @@ jobs: | |
uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BRANCH: gh-pages # The branch the action should deploy to. | ||
FOLDER: docs # The folder the action should deploy. | ||
CLEAN: true # Automatically remove deleted files from the deploy branch | ||
BRANCH: gh-pages | ||
FOLDER: docs | ||
CLEAN: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,74 @@ | ||
{ | ||
"name": "bmatovu/laravel-xml", | ||
"description": "Laravel XML Support", | ||
"homepage": "https://github.com/mtvbrianking/laravel-xml", | ||
"type": "library", | ||
"license": "MIT", | ||
"keywords": [ | ||
"laravel", | ||
"package", | ||
"xml", | ||
"request", | ||
"response", | ||
"middleware" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Brian Matovu", | ||
"email": "[email protected]", | ||
"homepage": "https://bmatovu.com", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.0", | ||
"illuminate/http": "^7.0|^8.0|^9.0|^10.0", | ||
"illuminate/support": "^7.0|^8.0|^9.0|^10.0", | ||
"illuminate/database": "^7.0|^8.0|^9.0|^10.0" | ||
}, | ||
"require-dev": { | ||
"code-lts/doctum": "^5.5", | ||
"friendsofphp/php-cs-fixer": "^3.14", | ||
"laravel/framework": "^10.0", | ||
"orchestra/testbench": "^8.0", | ||
"phpunit/phpunit": "^8.4|^9.0|^10.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Bmatovu\\LaravelXml\\": "src/" | ||
"name": "bmatovu/laravel-xml", | ||
"description": "Laravel XML Support", | ||
"homepage": "https://github.com/mtvbrianking/laravel-xml", | ||
"type": "library", | ||
"license": "MIT", | ||
"keywords": [ | ||
"laravel", | ||
"package", | ||
"xml", | ||
"request", | ||
"response", | ||
"middleware" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Brian Matovu", | ||
"email": "[email protected]", | ||
"homepage": "https://bmatovu.com", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.0", | ||
"illuminate/http": "^7.0|^8.0|^9.0|^10.0|^11.0", | ||
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0", | ||
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0" | ||
}, | ||
"files": [ | ||
"src/Support/helpers.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Bmatovu\\LaravelXml\\Test\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"scripts": { | ||
"cs-fix": "php-cs-fixer fix", | ||
"cs-lint": "php-cs-fixer fix --dry-run", | ||
"doc": "doctum.php update doctum.php -v", | ||
"test": "phpunit", | ||
"test-coverage": "phpunit --coverage-html build/coverage" | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "4.x-dev" | ||
"require-dev": { | ||
"code-lts/doctum": "^5.5", | ||
"friendsofphp/php-cs-fixer": "^3.14", | ||
"laravel/framework": "^10.0|^11.0", | ||
"orchestra/testbench": "^8.0|^9.0", | ||
"phpunit/phpunit": "^8.4|^9.0|^10.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Bmatovu\\LaravelXml\\": "src/" | ||
}, | ||
"files": [ | ||
"src/Support/helpers.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Bmatovu\\LaravelXml\\Test\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"scripts": { | ||
"cs-fix": "php-cs-fixer fix", | ||
"cs-lint": "php-cs-fixer fix --dry-run", | ||
"doc": "doctum.php update doctum.php -v", | ||
"test": "phpunit", | ||
"test-coverage": "phpunit --coverage-html build/coverage" | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"laravel": { | ||
"providers": [ | ||
"Bmatovu\\LaravelXml\\LaravelXmlServiceProvider" | ||
], | ||
"aliases": { | ||
"Xml": "Bmatovu\\LaravelXml\\LaravelXml" | ||
} | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "4.x-dev" | ||
}, | ||
"laravel": { | ||
"providers": [ | ||
"Bmatovu\\LaravelXml\\LaravelXmlServiceProvider" | ||
], | ||
"aliases": { | ||
"Xml": "Bmatovu\\LaravelXml\\LaravelXml" | ||
} | ||
} | ||
} | ||
} | ||
} |