-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 995 Bytes
/
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
{
"name": "tbachert/spi",
"description": "Service provider loading facility",
"keywords": ["service provider"],
"type": "composer-plugin",
"license": "Apache-2.0",
"require": {
"php": "^8.1",
"composer-plugin-api": "^2.0",
"composer/semver": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"composer/composer": "^2.0",
"infection/infection": "^0.27.9",
"phpunit/phpunit": "^10.5",
"psalm/phar": "^5.18"
},
"autoload": {
"psr-4": {
"Nevay\\SPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nevay\\SPI\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.2.x-dev"
},
"class": "Nevay\\SPI\\Composer\\Plugin",
"plugin-optional": true
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
},
"sort-packages": true
}
}