-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.31 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
{
"name": "studio24/site-monitor-agent",
"description": "Agent to send data to Studio 24 site monitoring tool.",
"type": "library",
"license": "MIT",
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "~6.0"
},
"autoload": {
"psr-4": {
"Studio24\\Agent\\": "src/"
}
},
"require-dev": {
"overtrue/phplint": "^3.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.5",
"yoast/phpunit-polyfills": "^1.0"
},
"scripts": {
"post-install-cmd": [
"php -r \"copy('config/agent-config.php', 'agent-config.php');\""
],
"lint": [
"./vendor/bin/phplint"
],
"cs": [
"./vendor/bin/phpcs"
],
"fix": [
"./vendor/bin/phpcbf"
],
"unit": [
"./vendor/bin/phpunit"
],
"test": [
"composer lint",
"composer cs",
"composer unit"
]
},
"scripts-descriptions": {
"lint": "Lint PHP files",
"cs": "Test coding standards are met in PHP code",
"fix": "Fix PHP code so it meets coding standards",
"unit": "Run PHPUnit tests",
"test": "Run all tests (phplint, phpcs, phpunit)"
}
}