This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Michael Dyrynda <[email protected]>
- Loading branch information
1 parent
6eafe57
commit 4801fb9
Showing
3 changed files
with
47 additions
and
59 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
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,42 +1,47 @@ | ||
{ | ||
"name": "dyrynda/laravel-efficient-uuid", | ||
"type": "utility", | ||
"description": "A package to extend Laravel migrations adding a more efficient storage of UUID fields in your database", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Michael Dyrynda", | ||
"email": "[email protected]", | ||
"homepage": "https://dyrynda.com.au" | ||
"name": "dyrynda/laravel-efficient-uuid", | ||
"type": "utility", | ||
"description": "A package to extend Laravel migrations adding a more efficient storage of UUID fields in your database", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Michael Dyrynda", | ||
"email": "[email protected]", | ||
"homepage": "https://dyrynda.com.au" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"dyrynda/laravel-model-uuid": "^7.0", | ||
"illuminate/container": "^10.0", | ||
"illuminate/contracts": "^10.0", | ||
"illuminate/database": "^10.0", | ||
"ramsey/uuid": "^4.7" | ||
}, | ||
"require-dev": { | ||
"laravel/legacy-factories": "^1.3", | ||
"mockery/mockery": "^1.4.4", | ||
"orchestra/testbench": "^8.0", | ||
"phpunit/phpunit": "^9.6.0 || ^10.0.7" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Dyrynda\\Database\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-main": "5.x-dev" | ||
} | ||
} | ||
], | ||
"require": { | ||
"php": "^7.3|^8.0", | ||
"dyrynda/laravel-model-uuid": "^6.6", | ||
"illuminate/container": "^8.12|^9.0", | ||
"illuminate/contracts": "^8.12|^9.0", | ||
"illuminate/database": "^8.12|^9.0", | ||
"ramsey/uuid": "^4.1" | ||
}, | ||
"require-dev": { | ||
"laravel/legacy-factories": "^1.1", | ||
"mockery/mockery": "^1.4.2", | ||
"orchestra/testbench": "^6.0|^7.0", | ||
"phpunit/phpunit": "^9.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Dyrynda\\Database\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"config": { | ||
"sort-packages": true | ||
} | ||
} |
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