This repository was archived by the owner on Dec 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.69 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.69 KB
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
{
"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" : "alexislefebvre@gmail.com",
"homepage": "http://alexislefebvre.com/",
"role": "Developer"
}],
"require" : {
"php": ">=7.0",
"ext-mbstring": "*",
"symfony/config": "~3.4|~4.0",
"symfony/form": "~3.4|~4.0",
"symfony/framework-bundle": "~3.4|~4.0",
"symfony/security-csrf": "~3.4|~4.0",
"symfony/templating": "~3.4|~4.0",
"symfony/twig-bundle": "~3.4|~4.0",
"symfony/var-dumper": "~3.4|~4.0",
"doctrine/orm": "^2.4.8",
"abraham/twitteroauth": "~0.6"
},
"require-dev": {
"symfony/monolog-bundle": "~3.1",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"liip/functional-test-bundle": "~2.0@alpha",
"phpunit/phpunit": "~6.5.6|~7.0",
"behat/behat": "~3.2",
"behat/symfony2-extension": "^2.1",
"behat/mink": "^1.7",
"behat/mink-extension": "~2.2",
"behat/mink-browserkit-driver": "~1.3",
"phpspec/phpspec": "~3.4||~4.2",
"doctrine/data-fixtures": "^1.3",
"nelmio/alice": "^3.4",
"behatch/contexts": "^3.1"
},
"autoload" : {
"psr-4" : {
"AlexisLefebvre\\Bundle\\AsyncTweetsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Acme\\": "tests/"
}
}
}