forked from FoilPHP/Foil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.1 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "opensolutions/foil",
"description": "PHP template engine for native PHP templates",
"keywords": [
"templates",
"template engine"
],
"homepage": "https://github.com/opensolutions/foil",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "giuseppe.mazzapica@gmail.com",
"homepage": "http://gm.zoomlab.it",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Foil\\": "src/"
},
"files": [ "inc/functions.php" ]
},
"autoload-dev": {
"psr-4": {
"Foil\\Tests\\": "tests/src/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"pimple/pimple": "~3.0",
"igorw/get-in": "~1.0",
"evenement/evenement": "~2.0",
"aura/html": "~2.4"
},
"require-dev": {
"phpunit/phpunit": "~10",
"mockery/mockery": "~1",
"brain/monkey": "~1.1"
},
"config": {
"optimize-autoloader": true
}
}