-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
56 lines (56 loc) · 1.37 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
{
"name": "chocofamilyme/laravel-tarantool",
"description": "A Tarantool based Eloquent ORM and Query builder for Laravel",
"type": "library",
"keywords": [
"db",
"tarantool",
"laravel",
"eloquent-tarantool",
"eloquent",
"orm"
],
"require": {
"php": "^7.3|^8.0",
"illuminate/support": "^8.0",
"illuminate/container": "^8.0",
"illuminate/database": "^8.0",
"illuminate/events": "^8.0",
"rybakit/msgpack": "^0.7",
"tarantool/client": "^0.9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"vimeo/psalm": "^4.1.0"
},
"license": [
"BSD-3-Clause"
],
"homepage": "https://github.com/chocofamilyme/laravel-tarantool",
"authors": [
{
"name": "IT Rahmet App",
"homepage": "https://rahmetapp.kz/"
}
],
"autoload": {
"psr-4": {
"Chocofamily\\Tarantool\\": "src/Tarantool/"
}
},
"extra": {
"laravel": {
"providers": [
"Chocofamily\\Tarantool\\ServiceProvider"
]
}
},
"scripts": {
"test": [
"@test:style",
"@test:psalm"
],
"test:style": "@php vendor/bin/php-cs-fixer",
"test:psalm": "@php vendor/bin/psalm"
}
}