-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.63 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
61
62
{
"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": "info@axyrmedia.nl"
},
{
"name": "Simon 'Firesphere' Erkelens",
"email": "simon@firesphere.dev"
}
],
"require": {
"php": "^8.0",
"silverstripe/framework": "^6",
"phpdocumentor/reflection-docblock": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^11.3",
"squizlabs/php_codesniffer": "^3.0",
"silverstripe/cms": "^6"
},
"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
}
},
"scripts": {
"lint": "phpcs -s src/",
"lint-clean": "phpcbf src/",
"test": "phpunit -v",
"test-dev": "phpunit -v --filter testAnnotateModule"
},
"prefer-stable": true,
"minimum-stability": "dev"
}