-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.61 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
{
"name": "oanhnn/laravel-ulid",
"type": "library",
"description": "A Laravel package for ULID (Universally Unique Lexicographically Sortable Identifier)",
"keywords": [
"laravel",
"package",
"ulid"
],
"license": "MIT",
"homepage": "https://github.com/oanhnn/laravel-ulid",
"authors": [
{
"name": "Oanh Nguyen",
"email": "oanhnn.bk@gmail.com"
}
],
"require": {
"php": "^7.1.3",
"illuminate/database": "^5.5",
"illuminate/support": "^5.5"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/database": "^3.5",
"orchestra/testbench": "^3.5",
"phpunit/phpunit": "^6.3|^7.0",
"squizlabs/php_codesniffer": "^3.2"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"laravel": {
"providers": [
"Laravel\\Ulid\\ServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Laravel\\Ulid\\": "src/"
}
},
"scripts": {
"test": [
"@php vendor/phpunit/phpunit/phpunit --testdox --testsuite=tests"
],
"coverage": [
"@php vendor/phpunit/phpunit/phpunit --coverage-html storage/coverage --testsuite=tests"
],
"benchmarks": [
"@php vendor/phpunit/phpunit/phpunit -d memory_limit=-1 --testsuite=benchmarks"
],
"cs-check": [
"@php vendor/squizlabs/php_codesniffer/bin/phpcs"
],
"cs-fix": [
"@php vendor/squizlabs/php_codesniffer/bin/phpcbf"
]
},
"support": {
"issues": "https://github.com/oanhnn/laravel-ulid/issues",
"source": "https://github.com/oanhnn/laravel-ulid"
}
}