-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.11 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
{
"name": "kanopi/components",
"description": "Kanopi Modular Component patterns for use in related PHP libraries, plugins, themes, and more",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kanopi Studios",
"email": "support@kanopistudios.com"
}
],
"autoload": {
"psr-4": {
"Kanopi\\Components\\": "src/"
}
},
"require": {
"ext-dom": "*",
"ext-json": "*",
"league/csv": "~9.8.0",
"php": ">=8.0",
"symfony/css-selector": "~v6.0.19",
"symfony/dom-crawler": "~v6.0.19"
},
"require-dev": {
"automattic/vipwpcs": "~3.0.0",
"dealerdirect/phpcodesniffer-composer-installer": "~0.7.2",
"phpcompatibility/php-compatibility": "10.x-dev",
"phpunit/phpunit": "~9.6.15"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcbf": "./vendor/bin/phpcbf",
"phpcs": "./vendor/bin/phpcs",
"phpcbf-latest": "./vendor/bin/phpcbf -standard=\"./.phpcs-8.2.xml.dist\" ./",
"phpcs-latest": "./vendor/bin/phpcs --standard=\"./.phpcs-8.2.xml.dist\" ./",
"phpunit": "./vendor/bin/phpunit -c \"./phpunit.xml.dist\""
}
}