-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.21 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
{
"name": "marioblazek/twig-byte-units-extension",
"description": "Twig filters that format output of units of information by using ByteUnits library by Gabriele Lana",
"keywords": [
"templating",
"twig",
"package",
"byte",
"units of information",
"symfony"
],
"homepage": "https://github.com/marioblazek/twig-byte-units-extension",
"license": "MIT",
"authors": [
{
"name": "Mario Blažek",
"email": "blazek.mario@gmail.com",
"homepage": "https://marioblazek.github.io/"
}
],
"require": {
"php": "^7.1|^8.0",
"gabrielelana/byte-units": "^0.5",
"twig/twig": "^1.35.2 || ^2.4.6 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7.1"
},
"autoload": {
"psr-4": {
"Marek\\Twig\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Marek\\Twig\\Tests\\": "tests"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.0-dev"
}
}
}