forked from pradosoft/prado
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
103 lines (103 loc) · 2.9 KB
/
composer.json
File metadata and controls
103 lines (103 loc) · 2.9 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "pradosoft/prado",
"type": "library",
"description": "Component Framework for PHP",
"keywords": ["Framework", "Component"],
"homepage": "https://github.com/pradosoft/prado",
"license" : "BSD-3-Clause",
"authors": [
{
"name": "Ciro Mattia Gonano",
"email": "ciromattia@gmail.com",
"role" : "Github/Packagist Maintainer"
},
{
"name": "Daniel Sampedro",
"email": "darthdaniel85@gmail.com",
"role" : "Developer"
},
{
"name": "David Otto",
"role" : "Developer"
},
{
"name": "Fabio Bas",
"email": "ctrlaltca@gmail.com",
"role" : "Developer"
},
{
"name": "Jens Klaer",
"email": "kj.landwehr.software@gmail.com",
"role" : "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=5.3.3",
"ext-ctype": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-spl": "*",
"firephp/firephp-core": "*",
"erusev/parsedown": "*",
"ezyang/htmlpurifier": "*",
"pradosoft/prado-wsdlgenerator": "*",
"pradosoft/prado-tinymce3": "*",
"bower-asset/jquery": "^3.1",
"bower-asset/jquery-ui": "^1.12",
"bower-asset/bootstrap": "^3.3",
"bower-asset/prototypejs-bower": "^1.7",
"bower-asset/scriptaculous-bower": "^1.9",
"bower-asset/tinymce": "^4",
"bower-asset/highlightjs": "^9",
"bower-asset/clipboard": "*",
"bower-asset/highlightjs-line-numbers.js": "*",
"psy/psysh": "*"
},
"require-dev" : {
"ext-xdebug": "*",
"phpunit/phpunit" : "5.*",
"phpunit/dbunit": "*",
"phpunit/phpunit-selenium": "3.*",
"phpunit/php-invoker": "*",
"apigen/apigen": "dev-master",
"pradosoft/prado-apigen-theme" : "*"
},
"provide" : {
"pradosoft/prado" : "4.0"
},
"suggest" : {
"ext-apc" : "Enables the use of TAPCCache as a cache handler",
"ext-eaccelerator" : "Enables the use of TEACache as a cache handler",
"ext-hash" : "Enables use of hash functions other than md5 and sha1",
"ext-iconv" : "Used by some internationaization components",
"ext-mbstring" : "Prado can use the mbstring extension for locale-aware string operations",
"ext-openssl" : "Enables encryption of sensitive data, eg. page viewstate",
"ext-memcache" : "Enables the use of TMemCache as a cache handler",
"ext-pdo" : "Used by all the Prado\\Data components, eg. TActiveRecord",
"ext-soap" : "Used by TSoapService to provide a soap backend",
"ext-xcache" : "Enables the use of TXCache as a cache handler",
"ext-xsl" : "Used by the TXmlTransform component",
"ext-zlib" : "Enables compression to reduce page size",
"pradosoft/prado-demos" : "Demo applications for Prado"
},
"autoload": {
"psr-4": {
"Prado\\": "framework"
}
},
"support" : {
"issues" : "https://github.com/pradosoft/prado/issues",
"source" : "https://github.com/pradosoft/prado",
"docs" : "http://www.pradoframework.net/site/documentation"
},
"bin" : [
"bin/prado-cli"
]
}