-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.9 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "daun/statamic-loupe",
"description": "Loupe search driver for Statamic",
"license": "MIT",
"type": "statamic-addon",
"keywords": [
"statamic",
"search",
"driver",
"loupe",
"sqlite"
],
"authors": [
{
"name": "Philipp Daun",
"email": "[email protected]",
"homepage": "https://philippdaun.net"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": "^8.1",
"statamic/cms": "^4.0 || ^5.0",
"loupe/loupe": "^0.9.0"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/pint": "^1.14",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.5",
"pestphp/pest": "^3.3",
"pestphp/pest-plugin-laravel": "^3.0"
},
"autoload": {
"psr-4": {
"Daun\\StatamicLoupe\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"pixelfear/composer-dist-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Daun\\StatamicLoupe\\ServiceProvider"
]
},
"statamic": {
"description": "Local SQLite search engine integration",
"name": "Loupe Search Driver"
}
},
"scripts": {
"analyse": "./vendor/bin/phpstan analyse --memory-limit=2G",
"format": "./vendor/bin/pint",
"lint": "./vendor/bin/pint --test",
"test": "./vendor/bin/pest",
"test:ci": "./vendor/bin/pest --coverage-clover coverage.xml",
"test:coverage": "./vendor/bin/pest --coverage"
}
}