-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathcomposer.json
More file actions
97 lines (97 loc) · 3.67 KB
/
Copy pathcomposer.json
File metadata and controls
97 lines (97 loc) · 3.67 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
{
"name": "joomla/application",
"description": "Joomla Application Package",
"type": "library",
"keywords": [
"joomla",
"framework",
"application",
"joomla-package"
],
"homepage": "https://github.com/joomla-framework/application",
"readme": "https://github.com/joomla-framework/application/README.md",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "The Joomla! Project",
"homepage": "https://framework.joomla.org/"
}
],
"support": {
"issues": "https://github.com/joomla-framework/application/issues",
"forum": "https://groups.google.com/g/joomla-dev-framework",
"wiki": "https://github.com/joomla-framework/application/wiki",
"docs": "https://developer.joomla.org/framework/documentation.html",
"source": "https://github.com/joomla-framework/application"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/joomla"
},
{
"type": "custom",
"url": "https://community.joomla.org/sponsorship-campaigns.html"
}
],
"require": {
"php": "^8.3.0",
"psr/log": "^1.0|^2.0|^3.0",
"psr/http-message": "^2.0",
"joomla/event": "^4.0",
"joomla/registry": "^4.0",
"laminas/laminas-diactoros": "^3.6.0",
"symfony/deprecation-contracts": "^2|^3"
},
"require-dev": {
"ext-json": "*",
"joomla/controller": "^4.0",
"joomla/di": "^4.0",
"joomla/input": "^4.0",
"joomla/router": "^4.0",
"joomla/session": "^4.0",
"joomla/test": "^4.0",
"joomla/uri": "^4.0",
"phpunit/phpunit": "^10.0",
"symfony/phpunit-bridge": "^7.0",
"squizlabs/php_codesniffer": "~3.10.2",
"phpstan/phpstan": "^2.1.17",
"phpstan/phpstan-deprecation-rules": "^2.0.3"
},
"suggest": {
"ext-json": "To use JSON format, ext-json is required",
"joomla/controller": "^4.0 To support resolving ControllerInterface objects in ControllerResolverInterface, install joomla/controller",
"joomla/input": "^4.0 To use WebApplicationInterface, install joomla/input",
"joomla/router": "^4.0 To use WebApplication or ControllerResolverInterface implementations, install joomla/router",
"joomla/session": "^4.0 To use SessionAwareWebApplicationInterface, install joomla/session",
"joomla/uri": "^4.0 To use AbstractWebApplication, install joomla/uri",
"psr/container": "^2.0 To use the ContainerControllerResolver, install any PSR-11 compatible container"
},
"autoload": {
"psr-4": {
"Joomla\\Application\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Application\\Tests\\": "Tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"testdox": "vendor/bin/phpunit --testdox",
"coverage": "vendor/bin/phpunit --coverage-html build/coverage",
"style": [
"vendor/bin/phpcbf --report=full --extensions=php --standard=PSR12 src/",
"vendor/bin/phpcs --report=full --extensions=php --standard=PSR12 src/"
]
},
"scripts-descriptions": {
"test": "Run the PHPUnit tests",
"testdox": "Run the PHPUnit tests and output the result in testdox format",
"coverage": "Run the PHPUnit tests and write an HTML coverage report to build/coverage",
"style": "Fix any style issues that can be fixed automatically and run a check afterwards to list issues that could not be solved."
}
}