-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
52 lines (52 loc) · 1.57 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
{
"name": "joomla/registry",
"type": "joomla-package",
"description": "Joomla Registry Package",
"keywords": ["joomla", "framework", "registry"],
"homepage": "https://github.com/joomla-framework/registry",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1.0",
"joomla/utilities": "^3.0"
},
"require-dev": {
"symfony/yaml": "^5.0",
"phpunit/phpunit": "^9.5.28",
"squizlabs/php_codesniffer": "^3.7.2",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phan/phan": "^5.4.2"
},
"suggest": {
"ext-json": "ext-json is needed for JSON support",
"ext-simplexml": "ext-simplexml is needed for XML support",
"symfony/yaml": "Install symfony/yaml if you require YAML support."
},
"autoload": {
"psr-4": {
"Joomla\\Registry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Registry\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.0-dev",
"dev-3.x-dev": "3.0-dev"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"testdox": "vendor/bin/phpunit --testdox",
"coverage": "vendor/bin/phpunit --coverage-html build/coverage",
"sign": [
"drone jsonnet --stream",
"drone sign joomla-framework/registry --save"
],
"style": "vendor/bin/phpcs -p --report=full --extensions=php --standard=PSR12 src/"
}
}