-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 913 Bytes
/
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
{
"name" : "nw/request-limit-bundle",
"type" : "symfony-bundle",
"description" : "This bundle provides a light way to restrict user access to some action for a specific time frame",
"keywords" : [
"POST",
"GET",
"HTTP verbs",
"Symfony",
"Request",
"Restrict",
"Limitations"
],
"homepage": "https://github.com/NovikovViktor/RequestLimitBundle",
"license": "MIT",
"authors" : [
{
"name" : "Viktor Novikov"
}
],
"require" : {
"php": "^7",
"ext-memcached": "*",
"ext-pdo": "*",
"symfony/symfony": ">=3.0",
"doctrine/common": "~2.4"
},
"require-dev": {
"phpspec/phpspec": "*",
"friendsofphp/php-cs-fixer": "*",
"doctrine/dbal": "~2.4",
"doctrine/orm": "~2.4,>=2.4.5",
"doctrine/doctrine-bundle": "~1.4",
"phpunit/phpunit": "~5.0"
},
"autoload" : {
"psr-4" : { "NW\\RequestLimitBundle\\" : "" }
}
}