Skip to content

Commit b604b4f

Browse files
author
riccardodallavia
committed
wip
1 parent 65ab72d commit b604b4f

File tree

3 files changed

+25
-16
lines changed

3 files changed

+25
-16
lines changed

.github/workflows/run-tests.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,19 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.1]
17-
laravel: [10.*]
16+
php: [8.2, 8.1, 8.0]
17+
laravel: [10.*, 9.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 10.*
2121
testbench: 8.*
22+
carbon: ^2.63
23+
- laravel: 9.*
24+
testbench: 7.*
25+
carbon: ^2.63
26+
exclude:
27+
- laravel: 10.*
28+
php: 8.0
2229

2330
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2431

@@ -40,7 +47,7 @@ jobs:
4047
4148
- name: Install dependencies
4249
run: |
43-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
50+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
4451
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
4552
4653
- name: Execute tests

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2022 MAIZE SRL <[email protected]>
3+
Copyright (c) 2023 MAIZE SRL <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
"description": "Laravel Encryptable",
44
"keywords": [
55
"maize-tech",
6-
"laravel-encryptable"
6+
"laravel",
7+
"encryptable",
8+
"encrypt",
9+
"anonymize"
710
],
811
"homepage": "https://github.com/maize-tech/laravel-encryptable",
912
"license": "MIT",
@@ -22,20 +25,19 @@
2225
}
2326
],
2427
"require": {
25-
"php": "^8.1",
28+
"php": "^8.0",
2629
"ext-openssl": "*",
27-
"illuminate/contracts": "^10.0",
28-
"illuminate/database": "^10.0",
29-
"illuminate/support": "^10.0",
30-
"illuminate/validation": "^10.0",
31-
"spatie/laravel-package-tools": "^1.14"
30+
"illuminate/contracts": "^9.0|^10.0",
31+
"illuminate/database": "^9.0|^10.0",
32+
"illuminate/support": "^9.0|^10.0",
33+
"illuminate/validation": "^9.0|^10.0",
34+
"spatie/laravel-package-tools": "^1.14.1"
3235
},
3336
"require-dev": {
34-
"friendsofphp/php-cs-fixer": "^3.14",
35-
"orchestra/testbench": "^8.0",
36-
"phpunit/phpunit": "^9.5.10",
37-
"spatie/laravel-ray": "^1.32",
38-
"vimeo/psalm": "^5.6"
37+
"friendsofphp/php-cs-fixer": "^3.4",
38+
"orchestra/testbench": "^7.0|^8.0",
39+
"phpunit/phpunit": "^9.5",
40+
"vimeo/psalm": "^4.20"
3941
},
4042
"autoload": {
4143
"psr-4": {

0 commit comments

Comments
 (0)