-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
executable file
·87 lines (87 loc) · 2.81 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "parkerj/TriTan-CMS",
"description": "TriTan CMS is a developer centric content management framework that allows you to go completely headless or nearly headless. With the mighty TriTan, you can build amazing RESTful applications and robust websites.",
"type": "CMS",
"keywords": ["CMS", "TriTan", "TriTanCMS", "cms framework", "headless", "headless cms"],
"license": "GPL-3.0",
"authors": [
{
"name": "Joshua Parker",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "package",
"package": {
"name": "parkerj/php-auto-update",
"version": "dev-master",
"source": {
"url": "https://github.com/parkerj/PHP-Auto-Update.git",
"type": "git",
"reference": "master"
}
}
},
{
"type":"composer",
"url": "https://packagist.tritancms.com"
}
],
"require": {
"php": ">=7.1",
"mikey179/vfsStream": "^1",
"jolicode/jolinotif": "^1.0",
"phpmailer/phpmailer": "*",
"gettext/gettext": "*",
"gettext/languages": "*",
"theorchard/monolog-cascade": "~0.4",
"jenssegers/date": "^3.2",
"respect/validation": "^1.1",
"ircmaxell/random-lib": "^1.2",
"mmeyer2k/dcrypt": "~3.0",
"cocur/slugify": "^2.0",
"defuse/php-encryption": "^2.1",
"stefangabos/zebra_pagination": "^2.0",
"fenom/fenom": "^2.11",
"studio-42/elfinder": "^2.1",
"adamwathan/form": "^0.9.0",
"mobiledetect/mobiledetectlib": "^2.8",
"phpfastcache/phpfastcache": "^6.0",
"webonyx/graphql-php": "^0.10.2",
"react/promise": "^2.5",
"psr/http-message": "^1.0",
"hoa/ruler": "2.17.05.16",
"stolz/assets": "^0.1.11",
"tubalmartin/cssmin": "^4.1",
"mtdowling/cron-expression": "^2.0",
"guzzlehttp/guzzle": "^6.3",
"spatie/image-optimizer": "^1.0",
"parkerj/php-auto-update": "^1.0",
"league/oauth2-google": "^2.0",
"erusev/parsedown": "^1.6",
"vlucas/valitron": "^1.4",
"fenom/providers-collection": "^1.0",
"foil/foil": "^0.6.7",
"symfony/console": "^4.1",
"nette/security": "^2.4",
"liten/liten": "^1.0",
"spatie/image": "^1.5",
"spatie/schema-org": "^2.0"
},
"extra": {
"installer-types": ["tritancms-plugin"],
"installer-paths": {
"plugins/{$name}/": ["type:tritancms-plugin"]
}
},
"autoload": {
"psr-4": {
"TriTan\\": "app/src/"
}
},
"require-dev": {
}
}