This repository has been archived by the owner on Feb 12, 2023. It is now read-only.
forked from alsofronie/eloquent-uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
9 changed files
with
231 additions
and
2,887 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/vendor/ | ||
composer.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
Oops, something went wrong.