-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 782 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 782 Bytes
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
{
"name" : "joomla-extensions/weblinks",
"description": "The Open Source PHP Framework for creating complex Joomla extensions",
"license" : "GPL-2.0-or-later",
"config": {
"platform": {
"php": "8.2"
}
},
"autoload": {
"psr-4": {
"Joomla\\Component\\Weblinks\\Administrator\\": "src/administrator/components/com_weblinks/src",
"Joomla\\Component\\Weblinks\\Site\\": "src/components/com_weblinks/src"
}
},
"require" : {
"php": "^8.2"
},
"require-dev": {
"joomla-projects/jorobo": "^0.12.1",
"phpunit/phpunit": "^9.6.0",
"friendsofphp/php-cs-fixer": "^3.87.1",
"squizlabs/php_codesniffer": "^3.13.4",
"phpstan/phpstan": "^2.1.22",
"phpstan/phpstan-deprecation-rules": "^2.0.3"
}
}