-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
58 lines (58 loc) · 1.44 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "ravendb/ravendb-php-client",
"type": "library",
"description": "RavenDB PHP client",
"keywords": [
"ravendb",
"php-client"
],
"homepage": "https://github.com/ravendb/ravendb-php-client",
"license": "MIT",
"authors": [
{
"name": "Aleksandar Sabo",
"email": "alxsabo@gmail.com",
"homepage": "https://ravendb.net",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"ext-ds": "*",
"ext-json": "*",
"ext-zip": "*",
"ext-fileinfo": "*",
"doctrine/annotations": "^1.13",
"doctrine/inflector": "^2.0",
"ramsey/uuid": "^4.2",
"symfony/http-client": "^7.1 || ^6.1",
"symfony/mime": "^6.1",
"symfony/property-access": "^7.1.4 || ^6.1",
"symfony/serializer": "^6.1"
},
"require-dev": {
"phpstan/phpstan": "^0.12.98",
"phpunit/phpunit": "~9.6",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"RavenDB\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tests\\RavenDB\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests",
"stan": "phpstan analyse src tests",
"psalm": "psalm"
},
"config": {
"sort-packages": true
}
}