-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.09 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "codewithkyrian/platform-package-installer",
"description": "A Composer plugin for platform-aware distribution URL resolution",
"type": "composer-plugin",
"license": "MIT",
"autoload": {
"psr-4": {
"Codewithkyrian\\PlatformPackageInstaller\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Codewithkyrian\\PlatformPackageInstaller\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Kyrian Obikwelu",
"email": "koshnawaza@gmail.com"
}
],
"require": {
"php": "^8.1",
"composer-plugin-api": "^1.1 || ^2.0",
"composer-runtime-api": "*"
},
"require-dev": {
"composer/composer": "~1.0 || ~2.0",
"symfony/var-dumper": "^6.0|^7.0|^8.0",
"pestphp/pest": "^2.36.0|^3.5.0"
},
"scripts": {
"test": "vendor/bin/pest",
"test:coverage": "./vendor/bin/pest --coverage"
},
"extra": {
"class": "Codewithkyrian\\PlatformPackageInstaller\\Plugin",
"plugin-modifies-downloads": true,
"plugin-modifies-install-path": true
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}