-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
67 lines (67 loc) · 1.42 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
65
66
67
{
"name": "level-level/clarkson-core",
"type": "library",
"license": "GPL-2.0-or-later",
"description": "A plugin to write Object-Oriented code in combination with the Twig templating engine while keeping the WordPress Way of working in mind.",
"authors": [
{
"name": "Level Level",
"homepage": "https://level-level.com"
},
{
"name": "Niels de Blaauw"
},
{
"name": "Jaime Martinez"
},
{
"name": "Robin Aldenhoven"
}
],
"autoload": {
"psr-4": {
"Clarkson_Core\\": "src/"
},
"files": [
"clarkson-core.php"
]
},
"scripts": {
"fix" : [
"phpcbf"
],
"test": [
"composer validate",
"phpcs",
"psalm --show-info=false",
"@phpunit --no-coverage"
],
"phpunit":[
"phpunit"
],
"doc":[
"docker run --rm -v $(pwd):/data phpdoc/phpdoc:3 run --title \"Clarkson Core\" --visibility public --sourcecode -d src -t out/phpdoc"
]
},
"require" : {
"php":">=7.4",
"twig/twig": "^3.1",
"twig/string-extra": "^3.1",
"twig/intl-extra": "^3.1",
"twig/html-extra": "^3.1",
"twig/markdown-extra": "^3.1"
},
"require-dev": {
"giacocorsiglia/wordpress-stubs": "^5.1",
"vimeo/psalm": "^3.4",
"10up/wp_mock": "^0.4.2",
"wp-coding-standards/wpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/php-compatibility": "^9.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}