-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.36 KB
/
Copy pathcomposer.json
File metadata and controls
60 lines (60 loc) · 1.36 KB
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
51
52
53
54
55
56
57
58
59
60
{
"name": "lemmon/twig-jsx",
"description": "JSX-like component syntax for Twig",
"license": "MIT",
"keywords": [
"twig",
"jsx",
"components",
"template",
"lexer",
"preprocessor"
],
"authors": [
{
"name": "Jakub Pelák",
"email": "jpelak@gmail.com"
}
],
"homepage": "https://github.com/lemmon/twig-jsx",
"support": {
"issues": "https://github.com/lemmon/twig-jsx/issues",
"source": "https://github.com/lemmon/twig-jsx"
},
"require": {
"php": "^8.1",
"twig/twig": "^3.0"
},
"require-dev": {
"carthage-software/mago": "^1.42",
"ergebnis/composer-normalize": "^2.52",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Lemmon\\TwigJsx\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lemmon\\TwigJsx\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"analyze": "mago analyze",
"check": [
"@format:check",
"@lint",
"@test"
],
"format": "mago fmt",
"format:check": "mago fmt --check",
"lint": "mago lint",
"test": "phpunit"
}
}