-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
58 lines (58 loc) · 1.56 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
{
"name": "simgroep/concurrent-spider-bundle",
"description": "Symfony bundle for running a distributed web page crawler",
"type": "symfony-bundle",
"authors": [
{
"name": "Kees Schepers",
"email": "[email protected]"
},
{
"name": "Nick van Kaam",
"email": "[email protected]"
},
{
"name": "Lukasz Kalinka",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:simgroep/php-spider.git"
},
{
"type": "vcs",
"url": "[email protected]:simgroep/NelmioSolariumBundle.git"
},
{
"type": "vcs",
"url": "[email protected]:simgroep/SncRedisBundle.git"
},
{
"type": "vcs",
"url": "[email protected]:simgroep/PHPWord.git"
}
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"vdb/php-spider": "^0.2",
"videlalvaro/php-amqplib": "~2",
"symfony/symfony": "^2.7||^3.0",
"phpoffice/phpword": "^0.13,>=0.13.1",
"nelmio/solarium-bundle": "^2.3",
"symfony/process": "^3.1",
"predis/predis": "^1.1",
"snc/redis-bundle": "^2.0.1"
},
"require-dev": {
"phpunit/phpunit": "~4",
"satooshi/php-coveralls": "~0.6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": { "Simgroep\\ConcurrentSpiderBundle\\": "" }
}
}