-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomposer.json
109 lines (109 loc) · 4.06 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
109
{
"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.1.0",
"psr/log": "^1.0|^2.0|^3.0",
"psr/http-message": "^1.0",
"joomla/event": "^3.0",
"joomla/registry": "^3.0",
"laminas/laminas-diactoros": "^2.24.0",
"symfony/deprecation-contracts": "^2|^3"
},
"require-dev": {
"ext-json": "*",
"joomla/controller": "^3.0",
"joomla/di": "^3.0",
"joomla/input": "^3.0",
"joomla/router": "^3.0",
"joomla/session": "^3.0",
"joomla/test": "^3.0",
"joomla/uri": "^3.0",
"phpunit/phpunit": "^10.0",
"symfony/phpunit-bridge": "^7.0",
"squizlabs/php_codesniffer": "~3.10.2",
"rector/rector": "^1.0",
"phpstan/phpstan": "^1.10.7",
"phan/phan": "^5.4"
},
"suggest": {
"ext-json": "To use JSON format, ext-json is required",
"joomla/controller": "^3.0 To support resolving ControllerInterface objects in ControllerResolverInterface, install joomla/controller",
"joomla/input": "^3.0 To use WebApplicationInterface, install joomla/input",
"joomla/router": "^3.0 To use WebApplication or ControllerResolverInterface implementations, install joomla/router",
"joomla/session": "^3.0 To use SessionAwareWebApplicationInterface, install joomla/session",
"joomla/uri": "^3.0 To use AbstractWebApplication, install joomla/uri",
"psr/container": "^1.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",
"sign": [
"drone jsonnet --stream",
"drone sign joomla-framework/application --save"
],
"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",
"sign": "Compile .drone.jsonnet and sign the resulting YML file. Make sure to have set DRONE_SERVER and DRONE_TOKEN properly.",
"style": "Fix any style issues that can be fixed automatically and run a check afterwards to list issues that could not be solved."
},
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.0-dev",
"dev-3.x-dev": "3.0-dev"
}
}
}