-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.11 KB
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 1.11 KB
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
{
"name": "cancio-labs/php-queue",
"description": "Interface and an array-based implementation of the FIFO Queue data structure.",
"keywords": ["queue", "ds", "data structure"],
"type": "library",
"require-dev": {
"phpunit/phpunit": "^10.5.11"
},
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"CancioLabs\\Ds\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\CancioLabs\\Ds\\Queue\\": "tests/"
}
},
"authors": [
{
"name": "Nilo Soares",
"email": "nilosoares@gmail.com"
},
{
"name": "Cancio Labs",
"email": "canciolabs@gmail.com"
},
{
"name": "NSCPS Solutions",
"email": "nscpssolutions@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1"
},
"scripts": {
"tests": [
"vendor/bin/phpunit"
],
"coverage": [
"XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html=coverage"
]
}
}