-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
47 lines (47 loc) · 1.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
{
"name": "joomla/entities",
"type": "joomla-package",
"description": "Joomla Entity Project",
"keywords": ["joomla", "framework", "entity"],
"homepage": "https://github.com/joomla-framework/entities",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1.0",
"ext-json": "*",
"joomla/database": "^3.0",
"joomla/string": "^3.0",
"joomla/event": "^3.0",
"doctrine/inflector": "^1.2",
"nesbot/carbon": "^2.51"
},
"require-dev": {
"joomla/test": "^3.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"
},
"autoload": {
"psr-4": {
"Joomla\\Entity\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Entity\\Tests\\": "Tests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.0-dev",
"dev-3.x-dev": "3.0-dev"
}
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}