-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 887 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 887 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
32
33
34
35
36
37
38
{
"name": "aeviiq/collection",
"type": "library",
"description": "A library that provides strict typed collections in PHP.",
"keywords": [
"php",
"collection",
"typed collection",
"aeviiq"
],
"homepage": "https://github.com/aeviiq/collection",
"license": "MIT",
"authors": [
{
"name": "Aeviiq Collection contributors",
"homepage": "https://github.com/aeviiq/collection/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"Aeviiq\\Collection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aeviiq\\Collection\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"scripts": {
"test": "vendor/bin/phpunit tests"
}
}