-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·70 lines (68 loc) · 2.29 KB
/
composer.json
File metadata and controls
executable file
·70 lines (68 loc) · 2.29 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
61
62
63
64
65
66
67
68
69
70
{
"name": "johnnycharlesw-github/phpizza",
"description": "A lightweight CMS that uses Markdown",
"type": "project",
"authors": [
{
"name": "John Charles Woods",
"email": "woods.johnny.charles@gmail.com"
}
],
"require": {
"erusev/parsedown": "^1.7",
"symfony/finder": "^7.3",
"scssphp/scssphp": "2.0.1",
"jeremykendall/php-domain-parser": "^6.4",
"league/uri-components": "^7.5",
"symfony/polyfill-intl-idn": "^1.33",
"guzzlehttp/guzzle": "^7.10",
"nyholm/psr7": "^1.8",
"rowbot/url": "^4.1",
"laminas/laminas-httphandlerrunner": "^2.13",
"symfony/cache": "^7.3",
"acmephp/acmephp": "dev-master",
"league/html-to-markdown": "^5.1"
},
"autoload": {
"psr-4": {
"PHPizza\\": "includes/",
"PHPizza\\Installer\\": "includes/Installer/",
"PHPizza\\Database\\": "includes/Database/",
"PHPizza\\Addons\\": "includes/Addons/",
"PHPizza\\SpecialPages\\": "includes/SpecialPages/",
"PHPizza\\Rendering\\": "includes/Rendering/",
"PHPizza\\UserManagement\\": "includes/UserManagement/",
"PHPizza\\COPPACompliance\\": "includes/COPPACompliance/",
"PHPizza\\EntryPoints\\": "includes/EntryPoints/",
"PHPizza\\HTTPHandling\\": "includes/HTTPHandling/",
"PHPizza\\Updates\\": "includes/Updates/",
"PHPizza\\ArtificialIntelligence\\": "includes/ArtificialIntelligence/",
"PHPizza\\DNS\\": "includes/DNS/",
"PHPizza\\Geolocation\\": "includes/Geolocation"
},
"files": [
"includes/GlobalFunctions.php"
]
},
"repositories": {
"johnnycharlesw-github/phpizza-installed-extensions": {
"type": "path",
"url": "extensions/*",
"options": {
"symlink":true
}
},
"johnnycharlesw-github/phpizza-installed-skins":{
"type": "path",
"url": "skins/*",
"options": {
"symlink": true
}
}
},
"require-dev": {
"squizlabs/php_codesniffer": "*"
},
"minimum-stability": "dev",
"prefer-stable": true
}