-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.66 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "syntro/silverstripe-bootstrap-forms",
"description": "Silverstripe module adding formfields for use in the frontend",
"type": "silverstripe-vendormodule",
"authors": [
{
"name": "Matthias Leutenegger",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4.0 || ^8",
"silverstripe/cms": "^4 || ^5",
"silverstripe/framework": "^4 || ^5",
"giggsey/libphonenumber-for-php": "^8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"syntro/silverstripe-phpstan": "^1",
"phpunit/phpunit": "^9.4"
},
"keywords": [
"silverstripe",
"silverstripe 4",
"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": "1.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"silverstripe/recipe-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}