-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 2.1 KB
/
Copy pathcomposer.json
File metadata and controls
60 lines (60 loc) · 2.1 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
56
57
58
59
60
{
"name": "llegaz/redis-ultimate",
"description": "Sets and MQ oparations for Redis",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Laurent LEGAZ",
"email": "laurent@legaz.eu"
}
],
"keywords": [
"sets",
"MQ",
"phpredis",
"predis",
"redis"
],
"require": {
"php": ">=8.1",
"llegaz/redis-adapter": "~0.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"symfony/var-dumper": "~6.4",
"friendsofphp/php-cs-fixer": "~3.3",
"phpstan/phpstan": "^2.1"
},
"suggest": {
"ext-redis": "^5.3"
},
"autoload": {
"psr-4": {
"LLegaz\\Ultimate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LLegaz\\Ultimate\\Tests\\": "tests/",
"LLegaz\\Redis\\Tests\\": "vendor/llegaz/redis-adapter/tests/"
}
},
"scripts": {
"cs":"@phpcsfixer",
"pu":"@phpunit",
"puf":"@phpunit-func-suite",
"stan":"vendor/bin/phpstan analyse -c phpstan.neon",
"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 SecurityTest::testSpecialCharactersDoNotCauseInjection",
"phpunit" : "./vendor/bin/phpunit --colors=always --configuration ./phpunit.xml --testsuite unit",
"phpunit-func-suite" : "./vendor/bin/phpunit --colors=always --configuration ./phpunit.xml --testsuite functional --bootstrap .phpunit_full",
"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 (add -vvv for verbose)",
"puf": "Run all functional tests (add -vvv for verbose)",
"cs": "Clean the sources"
}
}