-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 961 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
{
"name": "pyrrah/twemoji",
"description": "The simple way to use Twitter Emoji (Twemoji) for Symfony 6.x.",
"keywords": ["twemoji", "emoji", "symfony", "twemoji symfony"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [{
"name": "Avris",
"email": "andrea@avris.it",
"homepage": "https://avris.it"
},
{
"name": "Pierre-Yves Dick",
"homepage": "https://github.com/Pyrrah"
}],
"require": {
"php": "^7.0|^8.0",
"symfony/cache": "^4.0|^5.0|^6.0",
"symfony/http-client": "^4.0|^5.0|^6.0"
},
"require-dev": {
"symfony/var-dumper": "^4.0|^5.0",
"phpunit/phpunit": "^7.5",
"twig/twig": "^2.12"
},
"suggest": {
"twig/twig": "Provides a Twig filter"
},
"autoload": {
"psr-4": { "Pyrrah\\Twemoji\\": "src" }
},
"autoload-dev": {
"psr-4": { "Pyrrah\\Twemoji\\": "tests" }
}
}