-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
44 lines (44 loc) · 1.11 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
{
"name": "namics/twig-nitro-library",
"description": "Extension to embrace the Terrific frontend methodology in Twig. Currently it adds a custom component tag to Twig which mimics Nitro's handlebars helper.",
"type": "library",
"keywords": [
"terrific",
"nitro",
"twig",
"integration",
"namics"
],
"homepage": "https://github.com/namics/twig-nitro-library",
"license": "MIT",
"authors": [
{
"name": "Robert Vogt",
"email": "robert.vogt@namics.com",
"homepage": "https://github.com/deniaz"
},
{
"name": "Namics",
"email": "drupal@namics.com",
"homepage": "https://github.com/namics"
}
],
"autoload": {
"psr-4": {
"Namics\\Terrific\\": "src/",
"Namics\\Test\\Terrific\\": "test/"
}
},
"require": {
"php": ">=8.0",
"twig/twig": "^3.6"
},
"require-dev": {
"phpunit/phpunit": ">=9.0"
},
"scripts": {
"tests": [
"vendor/bin/phpunit"
]
}
}