-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
97 lines (97 loc) · 2.63 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "pdphilip/elasticsearch",
"description": "An Elasticsearch implementation of Laravel's Eloquent ORM",
"keywords": [
"laravel",
"eloquent",
"elasticsearch",
"elastic",
"database",
"model"
],
"homepage": "https://github.com/pdphilip/laravel-elasticsearch",
"authors": [
{
"name": "David Philip",
"email": "[email protected]",
"homepage": "https://github.com/pdphilip"
}
],
"license": "MIT",
"require": {
"php": "^8.2",
"illuminate/container": "^10.0|^11|^12",
"illuminate/database": "^10.30|^11|^12",
"illuminate/events": "^10.0|^11|^12",
"illuminate/support": "^10.0|^11|^12",
"elasticsearch/elasticsearch": "^8.17",
"spatie/ignition": "^1.15"
},
"require-dev": {
"orchestra/testbench": "^10.1||^9.0.0||^8.22.0",
"mockery/mockery": "^1.4.4",
"doctrine/coding-standard": "12.0.x-dev",
"pestphp/pest": "^3",
"pestphp/pest-plugin-laravel": "^3",
"laravel/pint": "^1.14",
"nunomaduro/collision": "^8.1.1||^7.10.0",
"larastan/larastan": "^3",
"pestphp/pest-plugin-arch": "^3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^2",
"phpstan/phpstan-phpunit": "^2"
},
"autoload-dev": {
"psr-4": {
"PDPhilip\\Elasticsearch\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"PDPhilip\\Elasticsearch\\": "src/",
"PDPhilip\\Elasticsearch\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"PDPhilip\\Elasticsearch\\ElasticServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve"
],
"lint": "pint -v",
"types": "phpstan analyse --ansi --memory-limit=2G",
"pest": "pest --colors=always",
"pest-ids": "pest --colors=always --configuration phpunit.ids.xml",
"test:lint": "pint --test -v",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always",
"test": [
"Composer\\Config::disableProcessTimeout",
"@test:lint",
"@test:types",
"@test:unit"
]
}
}