-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
111 lines (111 loc) · 2.6 KB
/
Copy pathcomposer.json
File metadata and controls
111 lines (111 loc) · 2.6 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "oxhq/cachelet",
"description": "The full Cachelet suite for Laravel.",
"type": "project",
"license": "MIT",
"homepage": "https://github.com/oxhq/cachelet",
"keywords": [
"laravel",
"cache",
"swr",
"invalidation",
"query-cache",
"response-cache"
],
"support": {
"issues": "https://github.com/oxhq/cachelet/issues",
"source": "https://github.com/oxhq/cachelet"
},
"authors": [
{
"name": "OxHQ",
"homepage": "https://github.com/oxhq"
}
],
"repositories": [
{
"type": "path",
"url": "packages/cachelet-core",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "packages/cachelet-model",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "packages/cachelet-query",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "packages/cachelet-request",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "packages/cachelet-exporter",
"options": {
"symlink": true
}
}
],
"require": {
"php": "^8.2",
"oxhq/cachelet-core": "^0.3",
"oxhq/cachelet-model": "^0.3",
"oxhq/cachelet-query": "^0.3",
"oxhq/cachelet-request": "^0.3",
"oxhq/cachelet-exporter": "^0.3"
},
"require-dev": {
"larastan/larastan": "^3.9",
"laravel/pint": "^1.23",
"orchestra/testbench": "^10.0|^11.0",
"pestphp/pest": "^3.0|^4.0",
"phpstan/phpstan": "^2.1"
},
"autoload-dev": {
"psr-4": {
"Oxhq\\Cachelet\\Tests\\": "tests/"
},
"classmap": [
"tests/"
]
},
"scripts": {
"test": "@php vendor/bin/pest",
"test:core": "@php vendor/bin/pest tests/Feature/Core",
"test:model": "@php vendor/bin/pest tests/Feature/Model",
"test:query": "@php vendor/bin/pest tests/Feature/Query",
"test:request": "@php vendor/bin/pest tests/Feature/Request",
"test:exporter": "@php vendor/bin/phpunit -c packages/cachelet-exporter/phpunit.xml.dist",
"test:integration": "@php vendor/bin/pest tests/Feature/Integration",
"benchmark": "@php tools/benchmark-cachelet.php",
"format": "@php vendor/bin/pint",
"analyse": "@php vendor/phpstan/phpstan/phpstan analyse --memory-limit=1G",
"validate-packages": "@php tools/validate-packages.php"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "0.3.x-dev"
}
}
}