-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.41 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
45
46
47
48
49
50
51
52
53
54
{
"name": "glowy/view",
"description": "View Package provides basic methods for creating extendable PHP Views.",
"license": "MIT",
"keywords": [
"view", "php-view", "php", "glowy"
],
"support": {
"source": "https://github.com/glowyphp/view",
"issues": "https://github.com/glowyphp/view/issues"
},
"authors": [
{
"name": "Sergey Romanenko",
"email": "[email protected]",
"homepage": "https://awilum.github.io"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-mbstring": "*",
"ext-spl": "*",
"ext-fileinfo": "*",
"glowy/macroable": "^4.0.0",
"glowy/strings": "^5.0.1",
"glowy/filesystem": "^5.0.0"
},
"autoload":{
"psr-4": {
"Glowy\\View\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"config": {
"apcu-autoloader": true,
"optimize-autoloader": true,
"platform-check": false,
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"ext-iconv": "*",
"doctrine/coding-standard": "9.0.0",
"pestphp/pest": "^1.21.1",
"phpstan/phpstan": "^1.8.0",
"symfony/var-dumper": "^6.1.0"
}
}