forked from brainbits/blocking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.71 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
54
55
56
57
{
"name": "brainbits/blocking",
"description": "Object blocking",
"keywords": ["block", "blocking", "async"],
"homepage": "http://brainbits.net",
"license": "MIT",
"authors": [
{
"name": "Stephan Wentz",
"email": "swentz@brainbits.net"
}
],
"require": {
"php": "^8.2",
"psr/clock": "^1.0"
},
"require-dev": {
"brainbits/phpcs-standard": "^7.0",
"brainbits/phpstan-rules": "^3.0",
"matthiasnoback/symfony-config-test": "^4.3",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"mikey179/vfsstream": "^1.6.10",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^10.1",
"predis/predis": "^2.2",
"symfony/clock": "^6.3",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/http-foundation": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/routing": "^6.0",
"symfony/security-core": "^6.0",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3"
},
"suggest": {
"predis/predis": "If you want to use the PredisStorage",
"symfony/http-foundation": "If you want to use the SymfonySessionOwnerFactory",
"symfony/security-core": "If you want to use the SymfonyTokenOwnerFactory"
},
"conflict": {
"phpspec/prophecy": "1.12.*"
},
"autoload": {
"psr-4": { "Brainbits\\Blocking\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}