-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 1.27 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
{
"name": "mediagone/types-collections",
"type": "library",
"description": "Provides full-featured collections for primitive types, and generic classes to build your own strongly-typed collections. Each collection has chainable methods to perform traversal, filter and projection operations (similar to Microsoft's LINQ-like features).",
"keywords": ["collections", "linq", "value objects", "type"],
"license": "MIT",
"authors": [
{"name": "Bruce Suire"}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Mediagone\\Types\\Collections\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Mediagone\\Types\\Collections\\": "tests/"
}
},
"require": {
"php": "^7.4|^8.0",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5.25"
},
"scripts": {
"sa": "phpstan --memory-limit=512M --configuration=phpstan.neon.dist",
"tests": "phpunit -c phpunit.xml.dist --testsuite Unit_Tests",
"coverage": "phpunit -c phpunit.xml.dist --coverage-html=tests/coverage/ --log-junit=tests/coverage/junit.xml"
}
}