forked from jeandormehl/laracache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.54 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": "filasik/laracache",
"license": "MIT",
"description": "InterSystems Caché provider for Laravel (ODBC)",
"keywords": [
"laravel",
"intersystems",
"cache",
"pdo",
"odbc"
],
"homepage": "https://github.com/filasik/laracache",
"authors": [
{
"name": "Jean Dormehl",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0|^8.1|^8.2|^8.3|^8.4",
"illuminate/database": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"mockery/mockery": "^1.5",
"nunomaduro/collision": "^8.1",
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"Laracache\\": "src/"
}
},
"scripts": {
"test": "pest --compact",
"test:coverage": "php -d pcov.enabled=1 ./vendor/bin/pest --coverage --compact",
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"extra": {
"branch-alias": {
"dev-master": "mls",
"dev-mls": "3.0.0-dev"
},
"laravel": {
"providers": [
"Laracache\\Cache\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}