-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
110 lines (110 loc) · 3.48 KB
/
Copy pathcomposer.json
File metadata and controls
110 lines (110 loc) · 3.48 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
{
"name": "pdphilip/opensearch",
"description": "An OpenSearch implementation of Laravel's Eloquent ORM",
"keywords": [
"laravel",
"eloquent",
"OpenSearch",
"database",
"model"
],
"homepage": "https://github.com/pdphilip/laravel-opensearch",
"authors": [
{
"name": "David Philip",
"email": "pd.philip@gmail.com",
"homepage": "https://github.com/pdphilip"
}
],
"license": "MIT",
"require": {
"php": "^8.3",
"illuminate/container": "^11.0|^12.0|^13.0",
"illuminate/database": "^11.0|^12.0|^13.0",
"illuminate/events": "^11.0|^12.0|^13.0",
"illuminate/support": "^11.0|^12.0|^13.0",
"pdphilip/elasticsearch": "v0.5.4",
"opensearch-project/opensearch-php": "^2.6",
"spatie/ignition": "^1.15"
},
"require-dev": {
"orchestra/testbench": "^9.0||^10.0||^11.0",
"mockery/mockery": "^1.4.4",
"doctrine/coding-standard": "12.0.x-dev",
"pestphp/pest": "^3||^4",
"pestphp/pest-plugin-laravel": "^3||^4",
"laravel/pint": "^1.14",
"nunomaduro/collision": "^8.1.1",
"larastan/larastan": "^3",
"pestphp/pest-plugin-arch": "^3||^4",
"phpstan/extension-installer": "^1.4||^2.0",
"phpstan/phpstan-deprecation-rules": "^2",
"phpstan/phpstan-phpunit": "^2"
},
"autoload-dev": {
"psr-4": {
"PDPhilip\\OpenSearch\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"PDPhilip\\OpenSearch\\": "src/",
"PDPhilip\\OpenSearch\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"PDPhilip\\OpenSearch\\OpenSearchServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": "@composer run prepare",
"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",
"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"
],
"test:l11": [
"@composer update --with laravel/framework:^11.0 --prefer-stable --no-interaction --quiet",
"@test:unit"
],
"test:l12": [
"@composer update --with laravel/framework:^12.0 --prefer-stable --no-interaction --quiet",
"@test:unit"
],
"test:l13": [
"@composer update --with laravel/framework:^13.0 --prefer-stable --no-interaction --quiet",
"@test:unit"
],
"test:all": [
"Composer\\Config::disableProcessTimeout",
"@test:l11",
"@test:l12",
"@test:l13"
]
}
}