-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 865 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
36
37
38
39
40
41
42
43
44
{
"$schema": "https://getcomposer.org/schema.json",
"name": "isaeken/brick-engine",
"description": "A simple language engine for your templates.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Isa Eken",
"email": "[email protected]",
"homepage": "https://isaeken.com.tr",
"role": "Developer"
}
],
"require": {
"php": "^8.4",
"guzzlehttp/guzzle": "^7.9"
},
"suggest": {
"ext-readline": "*"
},
"autoload": {
"psr-4": {
"IsaEken\\BrickEngine\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"IsaEken\\BrickEngine\\Tests\\": "tests/"
}
},
"require-dev": {
"symfony/var-dumper": "^7.2",
"pestphp/pest": "^3.7"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}