forked from sebastian-lenz/craft-linkfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.04 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
{
"name": "sebastianlenz/linkfield",
"description": "A Craft field type for selecting links",
"type": "craft-plugin",
"license": "MIT",
"require": {
"php": "^8.0",
"craftcms/cms": "^4.0.0-beta",
"sebastianlenz/craft-utils": "^3.0.2"
},
"require-dev": {
"craftcms/feed-me": "^5.0-dev",
"craftcms/phpstan": "dev-main",
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^7.5 || ^8.0",
"verbb/super-table": "^3.0.0-beta"
},
"autoload": {
"classmap": ["legacy"],
"psr-4": {
"lenz\\linkfield\\": "src/"
}
},
"extra": {
"handle": "typedlinkfield",
"name": "Typed link field",
"developer": "Sebastian Lenz",
"developerUrl": "https://github.com/sebastian-lenz/"
},
"scripts": {
"test": "./vendor/bin/phpunit ./tests",
"testWithCoverage": "./vendor/bin/phpunit --coverage-html ./tests/coverage --whitelist ./src ./tests"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev"
}