Skip to content

Commit c9cd5d7

Browse files
committed
1.0.0
1 parent d354d05 commit c9cd5d7

File tree

48 files changed

+1413
-167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1413
-167
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"name": "olekjs/elasticsearch",
3+
"type": "library",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Aleksander Kaim",
8+
"email": "aleksander.kaim0@gmail.com"
9+
}
10+
],
11+
"require": {
12+
"php": "^8.1",
13+
"guzzlehttp/guzzle": "^7.2",
14+
"illuminate/http": "10.*",
15+
"illuminate/support": "10.*"
16+
},
17+
"require-dev": {
18+
"phpunit/phpunit": "^10",
19+
"orchestra/testbench": "^8.5",
20+
"nunomaduro/collision": "^7.4"
21+
},
22+
"autoload": {
23+
"psr-4": {
24+
"Olekjs\\Elasticsearch\\": "src/"
25+
},
26+
"classmap": [
27+
"src/"
28+
]
29+
},
30+
"autoload-dev": {
31+
"psr-4": {
32+
"Olekjs\\Elasticsearch\\Tests\\": "tests/"
33+
}
34+
},
35+
"scripts": {
36+
"post-autoload-dump": [
37+
"@php vendor/bin/testbench package:discover --ansi"
38+
]
39+
},
40+
"minimum-stability": "dev",
41+
"prefer-stable": true,
42+
"extra": {
43+
"laravel": {
44+
"providers": [
45+
"Olekjs\\Elasticsearch\\Providers\\ElasticsearchServiceProvider"
46+
]
47+
}
48+
}
49+
}

0 commit comments

Comments
 (0)