forked from pradosoft/prado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
108 lines (108 loc) · 3.03 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"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": "[email protected]",
"role" : "Github/Packagist Maintainer"
},
{
"name": "Daniel Sampedro",
"email": "[email protected]",
"role" : "Developer"
},
{
"name": "Fabio Bas",
"email": "[email protected]",
"role" : "Developer"
},
{
"name": "Jens Klaer",
"email": "[email protected]",
"role" : "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=8.1.0",
"ext-ctype": "*",
"ext-dom": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-spl": "*",
"firephp/firephp-core": "^0",
"erusev/parsedown": "^1",
"ezyang/htmlpurifier": "^4",
"mrclay/jsmin-php": "^2",
"pradosoft/prado-wsdlgenerator": "^1",
"pradosoft/prado-tinymce3": "^3",
"pradosoft/tinymce-langs": "^5",
"bower-asset/jquery": "^3",
"bower-asset/jquery-ui": "^1",
"bower-asset/tinymce": "^5",
"bower-asset/highlightjs": "^9",
"bower-asset/clipboard": "^2",
"bower-asset/highlightjs-line-numbers.js": "^2",
"psy/psysh": "^0"
},
"require-dev" : {
"phpunit/phpunit" : "9.*",
"phpunit/phpunit-selenium": "dev-master",
"phpdocumentor/shim": "^3",
"pradosoft/prado-phpdoc-template": "*"
},
"suggest" : {
"ext-apcu" : "Enables the use of TAPCCache 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-memcached" : "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-xdebug": "Useful to get stack traces on Php fatal errors",
"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"
}
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"phpdocumentor/shim": true
}
},
"support" : {
"issues" : "https://github.com/pradosoft/prado/issues",
"source" : "https://github.com/pradosoft/prado",
"docs" : "http://www.pradoframework.net/site/documentation"
},
"scripts": {
"gendoc": "phpdoc --template=./vendor/pradosoft/prado-phpdoc-template",
"unittest": "phpunit --testsuite unit",
"functionaltest": [
"Composer\\Config::disableProcessTimeout",
"phpunit --testsuite functional"
]
},
"bin" : [
"bin/prado-cli"
]
}