-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
48 lines (48 loc) · 1.46 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
{
"name": "symbiote/silverstripe-components",
"description": "Create components using SilverStripe.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jake Bentvelzen",
"email": "[email protected]"
}
],
"require": {
"silverstripe/framework": "^5"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3",
"phpunit/phpunit": "^9"
},
"scripts": {
"phpstan": "bash ../../../vendor/bin/phpstan analyse src/ tests/ -c \".phpstan.neon\" -a \"tests/bootstrap-phpstan.php\" --level 3",
"phpcs": "phpcs src/Symbiote/Components/ tests/",
"phpcbf": "phpcbf --ignore=Symbiote/Components/ComponentTemplateParser.php src/Symbiote/Components/ tests/",
"php-peg": "php ../../silverstripe/framework/thirdparty/php-peg/cli.php ./src/Symbiote/Components/ComponentTemplateParser.peg > ./src/Symbiote/Components/ComponentTemplateParser.php"
},
"autoload": {
"psr-4": {
"Symbiote\\Components\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symbiote\\Components\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"replace": {
"silbinarywolf/silverstripe-components": "self.version"
},
"prefer-stable": true,
"minimum-stability": "dev"
}