-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1 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
{
"name": "diskerror/typedbson",
"type": "library",
"description": "PHP classes to strictly define member structure, to control their data types, and to add convenience methods, and support BSON types.",
"keywords": [
"type",
"structure",
"struct",
"cast",
"BSON",
"Mongo"
],
"homepage": "https://github.com/diskerror/TypedBSON",
"license": "Apache-2.0",
"authors": [
{
"name": "Reid Woodbury",
"email": "[email protected]",
"homepage": "http://www.rawsound.com",
"role": "Developer"
}
],
"repositories": [
{
"type": "path",
"url": "../Typed"
}
],
"require": {
"php": ">=7.2 <8.1",
"ext-json": "*",
"ext-mongodb": "~1.12",
"diskerror/typed": "dev-php73"
},
"require-dev": {
"phpunit/phpunit": "~8.5.26",
"phpdocumentor/phpdocumentor": "~3.1.2"
},
"autoload": {
"psr-4": {
"Diskerror\\TypedBSON\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TestClasses\\": "tests/classes/"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}