-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.61 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "syntro/silverstripe-bootstrap-forms",
"description": "Silverstripe module adding formfields for use in the frontend",
"type": "silverstripe-vendormodule",
"authors": [
{
"name": "Matthias Leutenegger",
"email": "hello@syntro.ch"
}
],
"require": {
"php": "^8",
"silverstripe/framework": "^6",
"giggsey/libphonenumber-for-php": "^8.0"
},
"require-dev": {
"silverstripe/cms": "^6",
"squizlabs/php_codesniffer": "^3.0",
"cambis/silverstan": "^2.0",
"phpunit/phpunit": "^11"
},
"keywords": [
"silverstripe",
"frontend forms"
],
"license": "BSD-3-Clause",
"autoload": {
"psr-4": {
"Syntro\\SilverstripeBootstrapForms\\": "src/",
"Syntro\\SilverstripeBootstrapForms\\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"
},
"extra": {
"branch-alias": {
"dev-master": "6.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"silverstripe/recipe-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}