forked from martianoff/composite-primary-keys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.36 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
{
"name": "maksimru/composite-primary-keys",
"description": "Most advanced composite primary keys package with support of: binary columns, queueable, implicit route binding, relations",
"keywords": [
"eloquent",
"composite",
"binary",
"keys"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Maksim Martianov",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"illuminate/cache": ">=5.6",
"illuminate/contracts": ">=5.6",
"illuminate/queue": ">=5.6",
"illuminate/redis": ">=5.6",
"illuminate/session": ">=5.6",
"illuminate/support": ">=5.6"
},
"require-dev": {
"laravel/framework": ">=5.6",
"orchestra/testbench": "~3.6 | ^5.2",
"orchestra/testbench-browser-kit": "~3.6 | ^5.2",
"orchestra/database": "~3.0 | ^5.1",
"mockery/mockery": "0.9.* | ^1.4 | >=1.5",
"fzaninotto/faker": "~1.4 | ^1.9 | >=2",
"phpunit/phpunit": "7 | 8 | >=9",
"barryvdh/laravel-debugbar": "^3.1 | ^3.3 | >=3.4"
},
"autoload": {
"psr-4": {
"MaksimM\\CompositePrimaryKeys\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/database/migrations",
"tests/database/seeders"
],
"psr-4": {
"MaksimM\\CompositePrimaryKeys\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}