Skip to content

Commit

Permalink
Merge pull request #3 from aharen/aharen/php8.4-support
Browse files Browse the repository at this point in the history
Added PHP 8.4 Support & Switch to Laravel's Collection
  • Loading branch information
aharen authored Feb 18, 2025
2 parents 788f2ef + e480e82 commit 7ad46b9
Show file tree
Hide file tree
Showing 6 changed files with 575 additions and 791 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
language: php
php:
- '8.0'
- '8.1'
- '8.2'
- '8.3'
- '8.4'

before_script:
- travis_retry composer self-update
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
"email": "hello@khusaam.com"
}
],
"minimum-stability": "dev",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"aharen\\MaldivesGeo\\": "src/MaldivesGeo"
}
},
"require-dev": {
"phpunit/phpunit": "^9.1"
"phpunit/phpunit": "^12.0.3"
},
"require": {
"php": "^8.0|^8.1",
"dusank/knapsack": "^10.0.0"
"php": "^8.1|^8.2|^8.3|^8.4",
"illuminate/collections": "^v11.42.1"
}
}
Loading

0 comments on commit 7ad46b9

Please sign in to comment.