-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1022 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 1022 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
{
"name": "moodle/composer-installer",
"type": "composer-plugin",
"license": "GPL-3.0-or-later",
"description": "A Composer Installer Plugin for Moodle",
"keywords": [
"installer",
"composer",
"Moodle"
],
"autoload": {
"psr-4": {
"Moodle\\Composer\\": "src/Composer"
}
},
"autoload-dev": {
"psr-4": {
"Moodle\\Composer\\Test\\": "tests/Composer"
}
},
"extra": {
"class": "Moodle\\Composer\\Plugin",
"plugin-modifies-install-path": true
},
"require": {
"php": "^8.0",
"composer-plugin-api": "^2.0",
"composer-runtime-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.7.8",
"composer/semver": "^3.4.4",
"phpunit/phpunit": "^9.6.20",
"phpstan/phpstan": "^2",
"phpstan/phpstan-phpunit": "^2"
},
"scripts": {
"test": "@php phpunit",
"phpstan": "@php phpstan analyse"
}
}