forked from babenkoivan/elastic-migrations
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.58 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.58 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
{
"name": "friendsofcat/opensearch-migrations",
"description": "OpenSearch migrations for Laravel",
"keywords": [
"laravel",
"migrations",
"opensearch",
"php"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ivan Babenko",
"email": "babenko.i.a@gmail.com"
},
{
"name": "Friends of CAT"
}
],
"autoload": {
"psr-4": {
"OpenSearch\\Migrations\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"OpenSearch\\Migrations\\Tests\\": "tests"
}
},
"require": {
"php": "^7.4 || ^8.0",
"friendsofcat/opensearch-adapter": "^2.0",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.5",
"friendsofphp/php-cs-fixer": "^3.8",
"phpstan/phpstan": "^1.6",
"dg/bypass-finals": "^1.3"
},
"extra": {
"laravel": {
"providers": [
"OpenSearch\\Migrations\\ServiceProvider"
]
}
},
"scripts": {
"check-style": "./vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run --diff --show-progress=dots --verbose",
"fix-style": "./vendor/bin/php-cs-fixer fix --allow-risky=yes",
"analyse": "./vendor/bin/phpstan analyse",
"test": "./vendor/bin/phpunit --testdox",
"test-coverage": "./vendor/bin/phpunit --testdox --coverage-text"
}
}