-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 932 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 932 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"type": "project",
"name": "elgg/starter-project",
"description": "This is a quickstart skeleton for building a site based on Elgg 7.x.",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"elgg/elgg": "7.*"
},
"require-dev": {
"phpunit/phpunit": "~12.5",
"phpdocumentor/reflection-docblock": "^5.2"
},
"scripts": {
"post-install-cmd": "\\Elgg\\Composer\\PostInstall::execute",
"post-package-update": "\\Elgg\\Composer\\PostUpdate::execute",
"test": "phpunit"
},
"config": {
"process-timeout": 0,
"platform": {
"php": "8.3"
},
"fxp-asset": {
"enabled": false
},
"apcu-autoloader": true,
"classmap-authoritative": true,
"optimize-autoloader": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"composer/installers": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}