forked from silverorange/site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
87 lines (87 loc) · 2.55 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": "silverorange/site",
"description": "Framework for building a website.",
"type": "library",
"keywords": [ "framework" ],
"homepage": "https://github.com/silverorange/site",
"license": "LGPL-2.1",
"authors": [
{
"name": "Charles Waddell",
"email": "[email protected]"
},
{
"name": "Isaac Grant",
"email": "[email protected]"
},
{
"name": "Michael Gauthier",
"email": "[email protected]"
},
{
"name": "Nathan Frederikson",
"email": "[email protected]"
},
{
"name": "Nick Burka",
"email": "[email protected]"
},
{
"name": "Steven Garrity",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://composer.silverorange.com"
},
{
"packagist": false
}
],
"require": {
"php": ">=5.5.0",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"aws/aws-sdk-php": "^3.0.0",
"codescale/ffmpeg-php": "^2.7.0",
"pear/mail": "^1.2.0",
"pear/mail_mime": "^1.10.0",
"pear/net_smtp": "^1.6.3",
"pear/services_akismet2": ">=0.3.1",
"pear/text_password": "^1.1.1",
"sentry/sentry": "^1.7.0",
"silverorange/mdb2": "^3.0.0",
"silverorange/concentrate": "^1.0.0",
"silverorange/swat": "^4.0.0"
},
"require-dev": {
"silverorange/coding-standard": "^1.0.0"
},
"suggest": {
"ext-amqp": "Allows some operations to use a message queue system.",
"ext-imagick": "Enables SiteImage processing abilities.",
"ext-memcached": "Allows caching various resources.",
"ext-pnctl": "Process control management for command-line applications.",
"ext-redis": "Allow connecting applications to a Redis data store.",
"ext-uploadprogress": "Allows showing upload progress for SiteFileEntry widgets.",
"pelago/emogrifier": "Inlines CSS in multipart mail messages.",
"psr/log": "Enables logging using the PSR logging interface.",
"silverorange/admin": "Enables admin components",
"silverorange/jwplayer": "Enables video player support.",
"silverorange/nate_go_search": "Article search indexing and CME search index framework.",
"silverorange/net_notifier": "Enables async notifications from web applications using web sockets.",
"silverorange/xml_rpc2": "Enables XML-RPC server pages."
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"post-install-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src",
"post-update-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src"
},
"autoload": {
"classmap": [ "Site/" ]
}
}