This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
63 lines (63 loc) · 1.69 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
63
{
"name": "tightenco/quicksand",
"description": "Easily schedule regular cleanup of old soft-deleted Eloquent data.",
"homepage": "https://github.com/tighten/quicksand",
"license": "MIT",
"authors": [
{
"name": "Benson Lee",
"email": "benson@tighten.co"
},
{
"name": "Matt Stauffer",
"email": "matt@tighten.co"
},
{
"name": "Jose Soto",
"email": "jose@tighten.co"
},
{
"name": "John Bonaccorsi",
"email": "john@tighten.co"
}
],
"require": {
"php": "^8.1",
"illuminate/config": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/console": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/log": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/legacy-factories": "^1.0.4",
"mockery/mockery": "^1.3.2",
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^8.5 || ^9.0 || ^10.5"
},
"autoload": {
"psr-4": {
"Tightenco\\Quicksand\\": "src"
},
"classmap": [
"tests"
]
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Tightenco\\Quicksand\\QuicksandServiceProvider"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}