forked from uepg/laravel-sybase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.6 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
{
"name": "uepg/laravel-sybase",
"description": "Sybase based Eloquent module extension for Laravel 11.x",
"keywords": [
"sybase"
],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Gabriel Tadra Mainginski",
"email": "13179626@uepg.br"
},
{
"name": "Ademir Mazer Junior",
"email": "ademir.mazer.jr@gmail.com"
},
{
"name": "Matheus Bueno Bartkevicius",
"email": "matheusbartkev@gmail.com"
},
{
"name": "Pavel V. Strokov",
"email": "pavel.strokov@gmail.com"
}
],
"support": {
"issues": "https://github.com/uepg/laravel-sybase/issues",
"wiki": "https://github.com/uepg/laravel-sybase/wiki"
},
"require": {
"php": "^8.3",
"doctrine/dbal": "^4.0.4",
"illuminate/database": "^11",
"illuminate/support": "^11",
"ext-pdo": "*"
},
"require-dev": {
"orchestra/testbench": "^9.2",
"nunomaduro/collision": "^8.3"
},
"extra": {
"laravel": {
"providers": [
"Uepg\\LaravelSybase\\SybaseServiceProvider"
],
"aliases": {
"UepgBlueprint": "Uepg\\LaravelSybase\\Database\\Schema\\Blueprint"
}
}
},
"autoload": {
"psr-4": {
"Uepg\\LaravelSybase\\": "src/",
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
]
}
}