This repository was archived by the owner on Sep 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.57 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.57 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
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
68
{
"name": "icaspar/icaspar-analytics",
"description": "Minimalist Google Analytics Plugin for WordPress",
"type": "plugin",
"keywords": [
"wordpress",
"wp",
"plugin",
"google analytics"
],
"homepage": "https://caspar.green/icaspar-analytics",
"license": "GPL-2.0+",
"authors": [
{
"name": "Caspar Green",
"email": "cg@caspar.green"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "xwp/wp-dev-lib",
"version": "1.0.1",
"source": {
"url": "https://github.com/xwp/wp-dev-lib.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "~6",
"brain/monkey": "^2.2",
"xwp/wp-dev-lib": "^1.0.1"
},
"autoload": {
"psr-4": {
"ICaspar\\Analytics\\": "src/",
"ICaspar\\Analytics\\Tests\\PhpUnit\\Unit\\": "tests/PhpUnit/Unit",
"ICaspar\\Analytics\\Tests\\PhpUnit\\Integration\\": "tests/PhpUnit/Integration"
}
},
"autoload-dev": {
"files": [
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"vendor-dir": "vendor",
"bin-dir": "bin",
"optimize-autoloader": true
},
"minimum-stability": "dev",
"scripts": {
"test-unit": "\"bin/phpunit\" --testsuite unit --colors=always",
"test-integration": "\"bin/phpunit\" --testsuite integration --colors=always --configuration tests/phpunit/integration/phpunit.xml.dist"
}
}