-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
45 lines (44 loc) · 1.37 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
{
"name": "googlechromelabs/third-party-capital",
"description": "This package is a collection of classes and utilities that can be used to efficiently load third-party libraries into your PHP application.",
"type": "library",
"license": "Apache-2.0",
"require": {
"php": ">=7.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.9",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9",
"slevomat/coding-standard": "^8.9"
},
"scripts": {
"lint": "phpcs --standard=phpcs.xml.dist",
"format": "phpcbf --standard=phpcs.xml.dist",
"test": "phpunit -c phpunit.xml.dist --verbose",
"phpmd": "phpmd . text phpmd.xml",
"phpstan": "phpstan analyse --memory-limit=2048M"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"archive": {
"exclude": ["/.husky", "/config", "/src", "!/*.json"]
},
"autoload": {
"psr-4": {
"GoogleChromeLabs\\ThirdPartyCapital\\": "inc/"
}
},
"autoload-dev": {
"psr-4": {
"GoogleChromeLabs\\ThirdPartyCapital\\TestData\\": "tests/phpunit/testdata",
"GoogleChromeLabs\\ThirdPartyCapital\\TestUtils\\": "tests/phpunit/utils"
}
}
}