-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.12 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1.12 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
{
"name": "laboiteabouillons/lbab",
"type": "library",
"description": "WordPress theme for La boîte à bouillons",
"keywords": ["la-boite-a-bouillons","wordpress", "theme"],
"homepage":"https://github.com/laboiteabouillons/lbab",
"readme":"README.md",
"time":"2018-10-23",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Olivier Jullien",
"homepage": "https://github.com/ojullien"
}
],
"require": {
"php": "^7.2"
},
"require-dev": {
"ext-xdebug": "*",
"squizlabs/php_codesniffer": "^3",
"wp-coding-standards/wpcs": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
"phpcompatibility/php-compatibility": "^9",
"phpunit/phpunit": "^7"
},
"prefer-stable" : true,
"scripts": {
"testmycode": ["vendor/bin/phpunit"],
"printcodereport": ["vendor/bin/phpcs --report=code --standard=./phpcs.xml"],
"printsourcereport": ["vendor/bin/phpcs --report=source --standard=./phpcs.xml"],
"messmycode": ["vendor/bin/phpmd src text ./phpmd.xml"]
}
}