forked from deligoez/laravel-model-hashid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.47 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "deligoez/laravel-model-hashid",
"description": "Generate, Save, and Route Stripe/Youtube-like Hash IDs for Laravel Eloquent Models",
"license": "MIT",
"type": "library",
"keywords": [
"deligoez",
"laravel",
"laravel-package",
"laravel-model-hashid",
"hashids"
],
"authors": [
{
"name": "Yunus Emre Deligöz",
"email": "[email protected]",
"homepage": "https://www.deligoz.me",
"role": "Developer"
}
],
"homepage": "https://github.com/deligoez/laravel-model-hashid",
"support": {
"issues": "https://github.com/deligoez/laravel-model-hashid/issues",
"source": "https://github.com/deligoez/laravel-model-hashid"
},
"require": {
"php": "^8.0|^8.1|^8.2",
"ext-mbstring": "*",
"hashids/hashids": "^4.1",
"illuminate/contracts": "^9.0|^10.0"
},
"require-dev": {
"laravel/pint": "^1.10",
"nunomaduro/collision": "^6.4",
"nunomaduro/larastan": "^2.4",
"orchestra/testbench": "^7.21|^8.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-deprecation-rules": "^1.1.1",
"phpstan/phpstan-phpunit": "^1.3.3",
"phpunit/phpunit": "^9.6.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Deligoez\\LaravelModelHashId\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Deligoez\\LaravelModelHashId\\Tests\\": "tests/",
"Deligoez\\LaravelModelHashId\\Tests\\Database\\Factories\\": "tests/database/factories/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Deligoez\\LaravelModelHashId\\LaravelModelHashIdServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"phpstan": "vendor/bin/phpstan analyse --configuration=phpstan.neon.dist",
"pint": "vendor/bin/pint",
"lint": "@pint",
"lintc": "vendor/bin/pint && (git diff-index --quiet HEAD || (git add . && git commit -m 'chore: Fix styling'))",
"test": "./vendor/bin/testbench package:test --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-text"
}
}