-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 989 Bytes
/
composer.json
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
{
"name": "hibit-dev/criteria",
"type": "library",
"description": "A comprehensive package for managing criteria pattern in PHP projects, streamlining data filtering, sorting, and pagination with ease.",
"homepage": "https://www.hibit.dev",
"license": "MIT",
"keywords": [
"ip",
"geo",
"country",
"location",
"detection",
"laravel",
"symfony"
],
"authors": [
{
"name": "Tigran Mekinyan",
"email": "tmekinyan@mail.ru"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Hibit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon"
},
"minimum-stability": "stable",
"prefer-stable": true
}