Skip to content

Commit 450b09d

Browse files
committed
Add basic structure
1 parent 00ae69e commit 450b09d

File tree

7 files changed

+1461
-1
lines changed

7 files changed

+1461
-1
lines changed

composer.json

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "macavity/php-vue-to-twig",
3+
"description": "",
34
"type": "library",
45
"license": "MIT",
56
"authors": [
@@ -8,5 +9,27 @@
89
"email": "[email protected]"
910
}
1011
],
11-
"require": {}
12+
"require": {
13+
"php": ">=7.1",
14+
"ext-dom": "*",
15+
"ext-libxml": "*"
16+
},
17+
"autoload": {
18+
"psr-4": {
19+
"Macavity\\VueToTwig\\": "src"
20+
}
21+
},
22+
"autoload-dev": {
23+
"psr-4": {
24+
"Macavity\\VueToTwig\\": "src",
25+
"Macavity\\VueToTwig\\Tests\\": "tests"
26+
},
27+
"files": [
28+
"vendor/autoload.php"
29+
]
30+
31+
},
32+
"require-dev": {
33+
"phpunit/phpunit": "^4.0"
34+
}
1235
}

0 commit comments

Comments
 (0)