forked from Automattic/sliding-window-counter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.22 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
{
"name": "automattic/sliding-window-counter",
"description": "Sliding window counter",
"license": "GPL-2.0-or-later",
"type": "library",
"authors": [
{
"name": "Alexey Kopytko",
"email": "alexey@kopytko.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"sanmai/pipeline": "^6.8"
},
"require-dev": {
"ext-memcached": "*",
"ergebnis/composer-normalize": "^2.8",
"friendsofphp/php-cs-fixer": "^3.17",
"infection/infection": ">=0.10.5",
"johnpbloch/wordpress-core": "^6.2",
"phan/phan": ">=1.1",
"phpstan/phpstan": ">=0.10",
"phpunit/phpunit": ">=9.4",
"vimeo/psalm": ">=2"
},
"autoload": {
"psr-4": {
"Automattic\\SlidingWindowCounter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Automattic\\SlidingWindowCounter\\": "tests/"
},
"classmap": [
"vendor/johnpbloch/wordpress-core/wp-includes/"
]
},
"config": {
"allow-plugins": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "v0.1.x-dev"
}
}
}