-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
63 lines (63 loc) · 2.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
55
56
57
58
59
60
61
62
63
{
"name" : "rotexsoft/versatile-collections",
"type" : "library",
"description" : "A collection package that can be extended to implement things such as a Dependency Injection Container, RecordSet objects for housing database records, a bag of http cookies, or technically any collection of items that can be looped over and whose items can each be accessed using array-access syntax or object property syntax.",
"keywords" : [
"collections",
"collection",
"array",
"arrays",
"iterable",
"iterator",
"ArrayAccess",
"typed",
"typed collection",
"typed collections"
],
"homepage" : "https://github.com/rotexsoft/versatile-collections",
"license" : "BSD-3-Clause",
"authors" : [{
"name" : "Rotimi Adegbamigbe",
"email" : "rotexdegba007-github@yahoo.ca",
"homepage" : "https://github.com/rotexdegba",
"role" : "Developer"
}],
"minimum-stability" : "dev",
"prefer-stable" : true,
"require" : {
"php" : ">=8.1.0"
},
"require-dev" : {
"phpunit/phpunit" : "^10.0",
"php-coveralls/php-coveralls" : "^2.0",
"rector/rector" : "^1.0.0",
"vimeo/psalm" : "^5.4.0"
},
"autoload" : {
"classmap" : [
"src/"
],
"files" : [
"src/helper-functions.php"
]
},
"autoload-dev" : {
"classmap" : [
"src/",
"tests/"
]
},
"scripts" : {
"test" : "vendor/bin/phpunit --coverage-text --display-warnings --display-deprecations --display-notices",
"rector" : "vendor/bin/rector process src --dry-run -vvv",
"rector-clear": "vendor/bin/rector --clear-cache",
"psalm" : "vendor/bin/psalm --threads=1",
"psalm-clear-cache": "vendor/bin/psalm --clear-global-cache && vendor/bin/psalm --clear-cache",
"qa": "composer test && composer rector && composer psalm-clear-cache && composer psalm"
},
"config" : {
"allow-plugins" : {
"rector/rector-installer" : true
}
}
}