-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
55 lines (55 loc) · 1.42 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "silverleague/ideannotator",
"description": "Generate PHP DocBlock annotations for DataObject and DataExtension databasefields and relation methods",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"database",
"orm",
"docblock",
"ide",
"annotations"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Martijn van Nieuwenhoven",
"email": "[email protected]"
},
{
"name": "Simon 'Firesphere' Erkelens",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"silverstripe/framework": "^4 || ^5",
"phpdocumentor/reflection-docblock": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"SilverLeague\\IDEAnnotator\\": "src/",
"SilverLeague\\IDEAnnotator\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"3.x-dev": "3.2.x-dev",
"dev-master": "3.x-dev"
}
},
"config": {
"process-timeout": 600,
"allow-plugins": {
"silverstripe/vendor-plugin": true,
"composer/installers": true,
"php-http/discovery": true
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}