-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
64 lines (64 loc) · 1.87 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
58
59
60
61
62
63
64
{
"name": "brainbits/blocking",
"description": "Object blocking",
"keywords": ["block", "blocking", "async"],
"homepage": "http://brainbits.net",
"license": "MIT",
"authors": [
{
"name": "Stephan Wentz",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"psr/clock": "^1.0"
},
"require-dev": {
"brainbits/phpcs-standard": "^7.0.1",
"brainbits/phpstan-rules": "^4.0",
"matthiasnoback/symfony-config-test": "^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^6.0",
"mikey179/vfsstream": "^1.6.11",
"phpstan/phpstan": "^2.1.1",
"phpunit/phpunit": "^11.5",
"predis/predis": "^2.2",
"symfony/clock": "^6.4|^7.0",
"symfony/config": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/http-foundation": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/routing": "^6.4|^7.0",
"symfony/security-core": "^6.4|^7.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0"
},
"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/"
}
},
"autoload-dev": {
"psr-4": {
"Brainbits\\Blocking\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}