| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "vinkla/hashids",
- "description": "A Hashids bridge for Laravel",
- "keywords": [
- "hashids",
- "laravel"
- ],
- "license": "MIT",
- "authors": [
- {
- "name": "Vincent Klaiber",
- "email": "hello@doubledip.se"
- }
- ],
- "require": {
- "php": "^7.3 || ^8.0",
- "graham-campbell/manager": "^4.4",
- "hashids/hashids": "^4.1",
- "illuminate/contracts": "^8.0",
- "illuminate/support": "^8.0"
- },
- "require-dev": {
- "graham-campbell/analyzer": "^3.0",
- "graham-campbell/testbench": "^5.4",
- "mockery/mockery": "^1.3",
- "phpunit/phpunit": "^9.3",
- "squizlabs/php_codesniffer": "^3.5"
- },
- "config": {
- "preferred-install": "dist"
- },
- "extra": {
- "branch-alias": {
- "dev-master": "9.1-dev"
- },
- "laravel": {
- "providers": [
- "Vinkla\\Hashids\\HashidsServiceProvider"
- ],
- "aliases": {
- "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
- }
- }
- },
- "autoload": {
- "psr-4": {
- "Vinkla\\Hashids\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Vinkla\\Tests\\Hashids\\": "tests/"
- }
- },
- "minimum-stability": "dev",
- "prefer-stable": true
- }
|