-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.13 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": "jojo1981/typed-collection",
"description": "Typed collection",
"keywords": [
"data",
"structure",
"collection",
"typed"
],
"type": "library",
"license": "MIT",
"readme": "README.md",
"authors": [
{
"name": "Joost Nijhuis",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"jojo1981/php-types": "^4.0"
},
"require-dev": {
"dg/bypass-finals": "^1.3",
"php-coveralls/php-coveralls": "^2.2",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5"
},
"suggest": {
"jms/serializer": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.",
"jojo1981/jms-serializer-handlers": "Add support to work with the jms/serializer package"
},
"autoload": {
"psr-4": {
"Jojo1981\\TypedCollection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jojo1981\\TypedCollection\\TestSuite\\": "tests/"
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"scripts": {
"test": [
"bin/phpunit"
]
}
}