-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.79 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
{
"name": "fanmade/laravel-nanoid",
"description": "A small package to add Nano IDs to Laravel",
"type": "library",
"keywords": [
"nanoid",
"nano-id",
"laravel",
"laravel-nanoid"
],
"license": "MIT",
"support": {
"issues": "https://github.com/fanmade/laravel-nanoid/issues",
"source": "https://github.com/fanmade/laravel-nanoid"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Fanmade\\NanoId\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fanmade\\NanoId\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Ben Reuter",
"email": "[email protected]"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^8.1",
"laravel/framework": "^9.0 || ^10.0 || ^11.0",
"hidehalo/nanoid-php": "^1.1"
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/pest --coverage",
"test-coverage-html": "XDEBUG_MODE=coverage vendor/bin/pest --coverage --coverage-html",
"test-coverage-clover": "XDEBUG_MODE=coverage vendor/bin/pest --coverage --coverage-clover",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon.dist"
},
"extra": {
"laravel": {
"providers": [
"Fanmade\\NanoId\\NanoIdServiceProvider"
]
}
},
"require-dev": {
"orchestra/testbench": "^9.0",
"pestphp/pest": "3.x-dev",
"pestphp/pest-plugin-laravel": "3.x-dev",
"phpstan/phpstan": "^1.11"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}