This repository was archived by the owner on Apr 26, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.19 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "joomla/form",
"type": "joomla-package",
"description": "Joomla Form Package",
"keywords": ["joomla", "framework", "form"],
"homepage": "https://github.com/joomla-framework/form",
"license": "GPL-2.0-or-later",
"require": {
"php": "~7.0",
"joomla/language": "~2.0@dev",
"joomla/string": "~1.3|~2.0@dev",
"joomla/uri": "~1.0",
"joomla/filter": "~1.0",
"joomla/filesystem": "~1.0",
"joomla/registry": "^1.4.5|~2.0@dev",
"joomla/utilities": "^1.3.3"
},
"require-dev": {
"joomla/database": "~1.0",
"joomla/test": "~1.0",
"phpunit/phpunit": ">=5.0 <5.4",
"phpunit/dbunit": "~1.3",
"squizlabs/php_codesniffer": "1.*"
},
"suggest": {
"joomla/database": "Install joomla/database if you would like to use the DatabaseConnection field type."
},
"autoload": {
"psr-4": {
"Joomla\\Form\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Form\\Tests\\": "Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"prefer-stable": true
}