-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
45 lines (45 loc) · 1.12 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
{
"name" : "goetas/twital",
"description" : "PHP templating engine that combines Twig and PHPTal power points",
"authors" : [{
"name" : "Asmir Mustafic",
"email" : "[email protected]"
}
],
"keywords" : [
"php",
"xml",
"templating",
"twig"
],
"homepage" : "https://github.com/goetas/twital",
"license" : "MIT",
"require" : {
"php" : "^7.1|^8.0",
"ext-dom": "*",
"masterminds/html5" : "^2.1.2",
"twig/twig" : "^1.43|^2.13|^3.0",
"symfony/event-dispatcher" : "^3.4|^4.4|^5.1|^6.0"
},
"require-dev" : {
"phpunit/phpunit" : "^7.5|^8.0|^9.0",
"friendsofphp/php-cs-fixer": "^2.19",
"scrutinizer/ocular": "^1.3",
"symfony/var-dumper": "^3.4|^4.4|^5.1|^6.0"
},
"autoload" : {
"psr-4" : {
"Goetas\\Twital\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Goetas\\Twital\\Tests\\" : "tests/Tests"
}
},
"extra" : {
"branch-alias" : {
"dev-master" : "1.x-dev"
}
}
}