-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
35 lines (35 loc) · 943 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": "oxid-esales/smarty-to-twig-converter",
"type": "application",
"description": "A script to convert smarty template engine to twig",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"symfony/console": "^5.0.4",
"symfony/filesystem": "^5.0.4",
"symfony/finder": "^5.0.4",
"sebastian/diff": "^4.0.4",
"doctrine/dbal": "^2.13",
"ext-dom": "*"
},
"require-dev": {
"oxid-esales/coding-standards": "^v3.0.5",
"phpunit/phpunit": "^9.1.1",
"ext-pdo": "*"
},
"autoload": {
"psr-0": { "toTwig\\": "app/" }
},
"autoload-dev": {
"psr-4": {
"toTwig\\Tests\\": "tests/",
"Doctrine\\Tests\\": "vendor/doctrine/dbal/tests/Doctrine/Tests"
}
},
"bin": ["toTwig"],
"config": {
"preferred-install": {
"doctrine/dbal": "source"
}
}
}