-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 769 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 769 Bytes
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
{
"name": "ravichdev/image-match",
"require": {
"elasticsearch/elasticsearch": "6.7.x",
"markrogoyski/math-php": "^0.49.0"
},
"require-dev": {
"phpunit/phpunit": "6.3.0",
"php-coveralls/php-coveralls": "^2.0",
"phpstan/phpstan": "*",
"phpmd/phpmd": "^2.6",
"phploc/phploc": "*",
"squizlabs/php_codesniffer": "3.5.3"
},
"autoload": {
"psr-4": {
"ImageMatch\\": "src/"
}
},
"authors": [
{
"name": "Ravi Chandra",
"email": "ravichandrach1@gmail.com"
}
],
"scripts": {
"phpcs": [
"phpcs --standard=ruleset.xml --extensions=php --encoding=utf-8 --tab-width=4 -sp src"
]
}
}