-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.83 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.83 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
{
"name": "syntro/elemental-bootstrap-blocks",
"description": "Private module providing blocks for bootstrap based themes.",
"type": "silverstripe-vendormodule",
"authors": [
{
"name": "Matthias Leutenegger",
"email": "hello@syntro.ch"
}
],
"require": {
"silverstripe/cms": "^4",
"silverstripe/framework": "^4",
"dnadesign/silverstripe-elemental": "^4",
"gorriecoe/silverstripe-link": "^1",
"gorriecoe/silverstripe-linkfield": "^1",
"syntro/silverstripe-bootstrap-forms": "^1",
"syntro/silverstripe-elemental-baseitem": "^1",
"unclecheese/display-logic": "^2"
},
"require-dev": {
"silverstripe/blog": "^3 || ^4",
"squizlabs/php_codesniffer": "^3.0",
"syntro/silverstripe-phpstan": "^1",
"phpunit/phpunit": "^9.4"
},
"keywords": [],
"license": "UNLICENSED",
"autoload": {
"psr-4": {
"Syntro\\ElementalBootstrapBlocks\\": "src/",
"Syntro\\ElementalBootstrapBlocks\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "../../bin/phpcs src/ tests/php/",
"phpcbf": "../../bin/phpcbf src/ tests/php/",
"phpstan": "../../bin/phpstan analyse src/ --memory-limit=1G -c phpstan-dev.neon -a ../../symbiote/silverstripe-phpstan/bootstrap.php --no-ansi --level 4",
"phpunit": "../../bin/phpunit",
"phpunit-flush": "../../bin/phpunit . '' flush=1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"expose": [
"client/dist"
]
},
"config": {
"process-timeout": 600,
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
}
}
}