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