Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
Added:
Browse files Browse the repository at this point in the history
1.) PHP 7.4 support
2.) Uuid32ModelTrait.php, UuidBinaryModelTrait.php, UuidModelTrait.php: added php 7.4, strict types

Updated:
1.) composer.json

Removed:
1.) composer.lock

@todo fixes tests
  • Loading branch information
Faks committed Jan 14, 2021
1 parent 13b0a43 commit eced894
Show file tree
Hide file tree
Showing 9 changed files with 231 additions and 2,887 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/vendor/
composer.lock
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,8 @@ class User extends Eloquent
## Running tests

To run the tests, just run `composer install` and `./vendor/bin/phpunit`.

## Credits

- [Alex Sofronie](https://github.com/alsofronie)
- [Oskars Germovs](https://twitter.com/faksx)
36 changes: 23 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,44 @@
{
"name": "alsofronie/eloquent-uuid",
"description": "A Laravel Eloquent Model trait for using UUID's as primary keys",
"type": "library",
"require": {
"webpatser/laravel-uuid": "2.*"
},
"require-dev": {
"laravel/framework": "^5.1.0",
"phpunit/phpunit": "~5.7"
},
"license": "MIT",
"authors": [
{
"name": "Alex Sofronie",
"email": "alsofronie@gmail.com"
},
{
"name": "Oskars Germovs",
"email": "oskars_germovs@inbox.lv"
}
],
"homepage": "https://github.com/solumdesignum/eloquent-uuid",
"require": {
"php": "^7.4|^8.0|^8.1"
},
"require-dev": {
"laravel/framework": "^5|^6|^7|^8|^9",
"phpunit/phpunit": "~8|~9",
"webpatser/laravel-uuid": "^4.0"
},
"support": {
"issues": "https://github.com/alsofronie/eloquent-uuid/issues",
"source": "https://github.com/alsofronie/eloquent-uuid"
"issues": "https://github.com/solumdesignum/eloquent-uuid/issues",
"source": "https://github.com/solumdesignum/eloquent-uuid"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Alsofronie\\Uuid\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
"dev-master": "1.x-master",
"dev-dev": "1.x-dev"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}
Loading

0 comments on commit eced894

Please sign in to comment.