-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.97 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
{
"name" : "alexislefebvre/async-tweets-bundle",
"type" : "symfony-bundle",
"description" : "Symfony bundle providing a Twitter reader for asynchronous reading",
"keywords" : ["symfony", "twitter", "reader", "bundle"],
"homepage": "http://asynctweets.alexislefebvre.com/",
"license" : "MIT",
"authors" : [{
"name" : "Alexis Lefebvre",
"email" : "[email protected]",
"homepage": "http://alexislefebvre.com/",
"role": "Developer"
}],
"require" : {
"php": ">=7.2",
"ext-mbstring": "*",
"abraham/twitteroauth": "~0.6",
"doctrine/collections": "^1.6.7",
"doctrine/common": "^2.13 || ^3.0",
"doctrine/orm": "^2.4.8",
"symfony/config": "^3.4|^4.4",
"symfony/form": "^3.4|^4.4",
"symfony/framework-bundle": "^3.4|^4.4",
"symfony/security-csrf": "^3.4|^4.4",
"symfony/templating": "^3.4|^4.4",
"symfony/twig-bundle": "^3.4|^4.4",
"symfony/var-dumper": "^3.4|^4.4"
},
"require-dev": {
"behat/behat": "~3.2",
"behat/mink": "^1.7",
"behat/mink-browserkit-driver": "~1.3",
"behat/mink-extension": "~2.2",
"behatch/contexts": "^3.1",
"doctrine/data-fixtures": "^1.3",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"friends-of-behat/symfony-extension": "^2.0",
"liip/functional-test-bundle": "^4.0.0",
"liip/test-fixtures-bundle": "^1.0.0",
"nelmio/alice": "^3.4",
"phpspec/phpspec": "~4.2||~5.0||^6.2",
"phpstan/phpstan-doctrine": "^0.12.17",
"phpunit/phpunit": "^7.5.12|^8.5.8|^9.3",
"symfony/monolog-bundle": "~3.1",
"symfony/panther": "^0.3.0"
},
"autoload" : {
"psr-4" : {
"AlexisLefebvre\\Bundle\\AsyncTweetsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Acme\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}