-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.48 KB
/
Copy pathcomposer.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "webkernel/standard-lifecycle",
"description": "Composer plugin managing installation and lifecycle of Webkernel modules, plugins, agents, FFI bridges and extensions.",
"version": "0.12.0",
"homepage": "https://www.webkernelphp.com/",
"type": "composer-plugin",
"license": "EPL-2.0",
"authors": [
{
"name": "El Moumen Yassine",
"email": "yassine@numerimondes.com",
"homepage": "https://webkernelphp.com/about"
}
],
"support": {
"issues": "https://github.com/webkernelphp/standard-installer/issues"
},
"require": {
"php": "^8.1",
"composer-plugin-api": "^2.0",
"composer/composer": "^2.0",
"composer/installers": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"Webkernel\\StdLifecycle\\": "src/"
}
},
"scripts": {
"fix": "vendor/bin/phpcbf",
"lint": "vendor/bin/phpcs",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"class": "Webkernel\\StdLifecycle\\SLCInstaller",
"webkernel": {
"package_repo": "git@github.com:webkernelphp/standard-installer.git",
"prefix": "standard"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}