-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 2.25 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 2.25 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
47
48
49
50
51
52
53
54
55
{
"name": "llegaz/redis-adapter",
"description": "additional layer based on phpredis/phpredis and predis/predis",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Laurent LEGAZ",
"email": "laurent@legaz.eu"
}
],
"require": {
"predis/predis": "^2.3",
"php": "^8.1",
"psr/log": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"symfony/var-dumper": "~6.4",
"friendsofphp/php-cs-fixer": "~3.3"
},
"suggest": {
"ext-redis": "^5.3"
},
"autoload": {
"exclude-from-classmap": ["src/RedisClient.php"],
"psr-4": {
"LLegaz\\Redis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LLegaz\\Redis\\Tests\\": "tests/"
}
},
"scripts": {
"pu":"@phpunit",
"puv":"@phpunit-verbose",
"tov":"@test-only-verbose",
"cs":"@phpcsfixer",
"test": "./vendor/bin/phpunit --display-deprecations --display-notices --display-warnings --colors=always --configuration ./phpunit.xml --bootstrap .phpunit_full",
"test-only": "./vendor/bin/phpunit --display-deprecations --display-notices --display-warnings --colors=always --configuration ./phpunit.xml --bootstrap .phpunit_full --filter RedisAdapterTest::testRedisAdapterFunc",
"test-verbose": "./vendor/bin/phpunit --colors=always --configuration ./phpunit.xml --no-output --log-events-text php://stdout --bootstrap .phpunit_full",
"test-only-verbose": "./vendor/bin/phpunit --colors=always --configuration ./phpunit.xml --no-output --log-events-text php://stdout --bootstrap .phpunit_full --filter testRedisAdapterDBsWithMultiConnections",
"phpunit" : "./vendor/bin/phpunit --colors=always --configuration ./phpunit.xml",
"phpunit-verbose" : "./vendor/bin/phpunit --colors=always --configuration ./phpunit.xml --no-output --log-events-text php://stdout",
"phpcsfixer": "./vendor/bin/php-cs-fixer fix --config=./.php-cs-fixer.php --diff -vvv"
},
"scripts-descriptions": {
"test": "Run the full tests suite",
"pu": "Run all unit tests",
"puv": "Run all unit tests but verbose..",
"cs": "Clean the sources"
}
}