-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·33 lines (33 loc) · 960 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
{
"name": "pintofbeer/symfony-twitter-oauth",
"description": "A Symfony component to handle Twitter OAuth and user creation",
"keywords": ["template", "composer", "package"],
"license": "MIT",
"authors": [
{
"name": "David Madelin",
"email": "[email protected]"
}
],
"type": "symfony-bundle",
"require": {
"php": ">=7.1",
"abraham/twitteroauth": "^1.0",
"doctrine/orm": "~2.0",
"symfony/config": "~2.3|~3.0|~4.0",
"symfony/dependency-injection": "~2.3|~3.0|~4.0",
"symfony/framework-bundle": "~4.0",
"symfony/http-kernel": "~2.3|~3.0|~4.0",
"symfony/http-foundation": "~4.0",
"symfony/routing": "~4.0",
"sensio/framework-extra-bundle": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "6.*"
},
"autoload": {
"psr-4": {
"Pintofbeer\\SymfonyTwitterOAuth\\": "src/"
}
}
}