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

v3.0 #230

Draft
wants to merge 23 commits into
base: master
Choose a base branch
from
Draft

v3.0 #230

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
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: 8.1
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
coverage: none

- name: Install Composer dependencies
run: composer install --prefer-dist --no-interaction

- name: Execute tests
run: vendor/bin/phpunit
run: vendor/bin/pest
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/vendor/
/node_modules
.phpunit.result.cache
composer.lock

19 changes: 13 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^8.0",
"laravel/legacy-factories": "^1.3"
"php": "^8.1.7",
"illuminate/support": "^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.0.0"
"mockery/mockery": "^1.0.0",
"phpstan/phpstan": "^1.8",
"nunomaduro/larastan": "^2.0",
"pestphp/pest": "^1.21"
},
"autoload": {
"psr-4": {
Expand All @@ -40,5 +42,10 @@
"JoeDixon\\Translation\\TranslationBindingsServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}
}
Loading