Skip to content

Commit 4641793

Browse files
committed
composer reqs for Laravel 10 and 11
1 parent 4fc0c48 commit 4641793

File tree

1 file changed

+49
-49
lines changed

1 file changed

+49
-49
lines changed

composer.json

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
{
2-
"name": "pdphilip/elasticsearch",
3-
"description": "An Elasticsearch implementation of Laravel's Eloquent ORM",
4-
"keywords": [
5-
"laravel",
6-
"eloquent",
7-
"elasticsearch",
8-
"elastic",
9-
"database",
10-
"model"
11-
],
12-
"homepage": "https://github.com/pdphilip/laravel-elasticsearch",
13-
"authors": [
14-
{
15-
"name": "David Philip",
16-
"email": "[email protected]",
17-
"homepage": "https://github.com/pdphilip"
18-
}
19-
],
20-
"license": "MIT",
21-
"require": {
22-
"php": "^8.2",
23-
"illuminate/support": "^11.0",
24-
"illuminate/container": "^11.0",
25-
"illuminate/database": "^11.0",
26-
"illuminate/events": "^11.0",
27-
"elasticsearch/elasticsearch": "^8.12"
28-
},
29-
"require-dev": {
30-
"phpunit/phpunit": "^10.3",
31-
"orchestra/testbench": "^8.0",
32-
"mockery/mockery": "^1.4.4",
33-
"doctrine/coding-standard": "12.0.x-dev"
34-
},
35-
"autoload-dev": {
36-
"psr-4": {
37-
"PDPhilip\\Elasticsearch\\Tests\\": "tests/"
38-
}
39-
},
40-
"autoload": {
41-
"psr-4": {
42-
"PDPhilip\\Elasticsearch\\": "src/"
43-
}
44-
},
45-
"extra": {
46-
"laravel": {
47-
"providers": [
48-
"PDPhilip\\Elasticsearch\\ElasticServiceProvider"
49-
]
50-
}
2+
"name": "pdphilip/elasticsearch",
3+
"description": "An Elasticsearch implementation of Laravel's Eloquent ORM",
4+
"keywords": [
5+
"laravel",
6+
"eloquent",
7+
"elasticsearch",
8+
"elastic",
9+
"database",
10+
"model"
11+
],
12+
"homepage": "https://github.com/pdphilip/laravel-elasticsearch",
13+
"authors": [
14+
{
15+
"name": "David Philip",
16+
"email": "[email protected]",
17+
"homepage": "https://github.com/pdphilip"
5118
}
19+
],
20+
"license": "MIT",
21+
"require": {
22+
"php": "^8.2",
23+
"illuminate/support": "^10.0|^11.0",
24+
"illuminate/container": "^10.0|^11.0",
25+
"illuminate/database": "^10.0|^11.0",
26+
"illuminate/events": "^10.0|^11.0",
27+
"elasticsearch/elasticsearch": "^8.12"
28+
},
29+
"require-dev": {
30+
"phpunit/phpunit": "^10.3",
31+
"orchestra/testbench": "^8.0",
32+
"mockery/mockery": "^1.4.4",
33+
"doctrine/coding-standard": "12.0.x-dev"
34+
},
35+
"autoload-dev": {
36+
"psr-4": {
37+
"PDPhilip\\Elasticsearch\\Tests\\": "tests/"
38+
}
39+
},
40+
"autoload": {
41+
"psr-4": {
42+
"PDPhilip\\Elasticsearch\\": "src/"
43+
}
44+
},
45+
"extra": {
46+
"laravel": {
47+
"providers": [
48+
"PDPhilip\\Elasticsearch\\ElasticServiceProvider"
49+
]
50+
}
51+
}
5252
}

0 commit comments

Comments
 (0)