Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update platform and exports #56

Merged
merged 1 commit into from
Jan 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 20 additions & 5 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/phpunit.xml.dist export-ignore
/tests export-ignore
/.github export-ignore
/app export-ignore
/bootstrap export-ignore
/config export-ignore
/standards export-ignore
/stubs export-ignore
/tests export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/banner.png export-ignore
/box.json export-ignore
/CONTRIBUTING.md export-ignore
/duster export-ignore
/duster.json export-ignore
/phpstan.neon export-ignore
/phpunit.xml.dist export-ignore
/README.md export-ignore
/RELEASE.md export-ignore
/style-guide.md export-ignore
5 changes: 1 addition & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,10 @@ jobs:
coverage: none

- name: Install dependencies
run: composer install --no-interaction --no-suggest --ignore-platform-reqs
run: composer install --no-interaction

- name: Duster
run: ./duster

- name: PHPStan
run: vendor/bin/phpstan

- name: Pest
run: vendor/bin/pest
Binary file modified builds/duster
Binary file not shown.
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.0.2"
}
},
"minimum-stability": "dev",
Expand Down
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
|
*/

'version' => '0.5.0',
'version' => '0.5.1',

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions duster.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
],
"scripts": {
"lint": {
"php-version": ["php", "-v"],
"phpstan-version": ["./vendor/bin/phpstan", "-V"],
"phpstan": ["./vendor/bin/phpstan", "analyse"]
}
}
Expand Down