-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.86 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
56
57
58
59
60
61
62
63
64
{
"name": "moo/template-tags",
"description": "Provide a several useful template tags.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"template"
],
"license": "MIT",
"authors": [
{
"name": "Mohamed Alsharaf",
"email": "mohamed.alsharaf@gmail.com",
"homepage": "http://my.geek.nz",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"silverstripe/framework": "^5"
},
"require-dev": {
"silverstripe/recipe-testing": "^3",
"friendsofphp/php-cs-fixer": "^3.2",
"slevomat/coding-standard": "^7.0",
"phpunit/php-code-coverage": "^9.2"
},
"autoload": {
"psr-4": {
"Moo\\": "src/",
"Moo\\Test\\": "tests/"
}
},
"scripts": {
"fix": "php-cs-fixer fix src tests --allow-risky=yes --config=.php-cs-fixer.php",
"test": "phpunit tests '' flush=1",
"coverage": "XDEBUG_MODE=coverage phpunit tests --coverage-clover coverage/clover.xml",
"phpcs": "phpcs src --standard=phpcs.xml --extensions=php --encoding=utf-8",
"phpcbf": "phpcbf src --standard=phpcs.xml --extensions=php --encoding=utf-8"
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:satrun77/silverstripe-phpstan.git"
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"project-files-installed": [
"behat.yml",
"phpcs.xml.dist",
"phpunit.xml.dist"
]
}
}