-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.47 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
{
"name": "numberninecms/redis",
"description": "Installation wizard and auto-configuration for Redis cache and sessions with NumberNine CMS",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "William Arin",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-redis": "*",
"numberninecms/common": "^0.1",
"symfony/config": "^5.1 || ^6.0",
"symfony/console": "^5.1 || ^6.0",
"symfony/dependency-injection": "^5.1 || ^6.0",
"symfony/yaml": "^5.1 || ^6.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.11",
"nikic/php-parser": "^4.10",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpro/grumphp": "^1.0",
"phpstan/phpstan": "^0.12.25",
"phpstan/phpstan-doctrine": "^0.12.13",
"phpstan/phpstan-phpunit": "^0.12.8",
"phpstan/phpstan-symfony": "^0.12.6",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"NumberNine\\RedisBundle\\": "src/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"scripts": {
"test": "vendor/bin/grumphp run --no-interaction"
}
}