-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·53 lines (53 loc) · 1.43 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
{
"name": "nepster-web/php-simple-queue",
"description": "Simple queues implementation in PHP through database.",
"keywords": [
"php",
"queue",
"simple-queue",
"dbal queue",
"database queue",
"consumer"
],
"support": {
"docs": "https://github.com/nepster-web/php-simple-queue/blob/main/docs/guide/README.md",
"issues": "https://github.com/nepster-web/php-simple-queue/issues",
"source": "https://github.com/nepster-web/php-simple-queue"
},
"config": {
"sort-packages": true
},
"license": "MIT",
"authors": [
],
"require": {
"php": "^7.4|^8.0",
"ext-PDO": "*",
"ext-json": "*",
"doctrine/dbal": "^2.0|^3.0",
"laminas/laminas-hydrator": "^4.1",
"ramsey/uuid": "^4.1",
"symfony/serializer": "^5.2"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^2.18"
},
"autoload": {
"psr-4": {
"Simple\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Simple\\QueueTest\\": "tests/"
}
},
"scripts": {
"code-style-check": "php vendor/bin/php-cs-fixer fix --verbose --show-progress=dots --dry-run --config=.php_cs.php",
"code-style-fix": "php vendor/bin/php-cs-fixer fix --diff --config=.php_cs.php",
"test": "php vendor/bin/phpunit --colors=always",
"test-coverage": "php vendor/bin/phpunit --coverage-text --coverage-html ./docs/tmp/"
}
}