forked from gorriecoe/silverstripe-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 2.05 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 2.05 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
{
"name": "nswdpc/silverstripe-embed",
"description": "Adds embed functionality to data objects.",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Gorrie Coe",
"email": "gorriecoe@gmail.com",
"role": "Original author"
},
{
"name": "PD web team",
"role": "Maintainer"
}
],
"keywords": [
"silverstripe",
"cms",
"embed"
],
"homepage": "http://github.com/nswdpc/silverstripe-embed",
"require": {
"embed/embed": "^4.4",
"silverstripe/framework": "^5",
"silverstripe/asset-admin": "^2"
},
"require-dev": {
"cambis/silverstripe-rector": "^2",
"cambis/silverstan": "^2",
"phpstan/phpstan": "^2",
"phpstan/phpstan-phpunit": "^2",
"rector/rector": "^2",
"phpunit/phpunit": "^9.5",
"nswdpc/ci-files": "dev-v-4",
"friendsofphp/php-cs-fixer": "^3"
},
"autoload": {
"psr-4": {
"NSWDPC\\Embed\\": "src/",
"NSWDPC\\Embed\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"phpstan-analyse": "./vendor/bin/phpstan analyse --ansi --no-progress --no-interaction --configuration vendor/nswdpc/ci-files/phpstan/.phpstan.silverstripe.neon src/ tests/",
"rector-dryrun": "./vendor/bin/rector process --dry-run --ansi --config vendor/nswdpc/ci-files/rector/.rector.silverstripe_53_83.php src/ tests/",
"rector-process": "./vendor/bin/rector process --no-diffs --ansi --config vendor/nswdpc/ci-files/rector/.rector.silverstripe_53_83.php src/ tests/",
"phpcsfixer-fix": "./vendor/bin/php-cs-fixer fix --ansi --no-interaction --config vendor/nswdpc/ci-files/php-cs-fixer/.php-cs-fixer.php src/ tests/"
}
}