-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 2.03 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 2.03 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
{
"name": "immediate/android-services-bundle",
"description": "This bundle allows for interaction with the Android Publisher services specifically",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": {
"immediate/im-datadog": {
"type": "vcs",
"url": "https://github.com/immediatemediaco/im-datadog.git"
}
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.4.* || ^7.0"
},
"google/apiclient-services": [
"AndroidPublisher"
]
},
"require": {
"php": "^8.3",
"google/apiclient": "^2.10",
"immediate/im-datadog": "^1.0",
"symfony/validator": "6.4.* || ^7.0"
},
"require-dev": {
"mockery/mockery": "^1.6",
"overtrue/phplint": "^9.5",
"phpmd/phpmd": "^2.15",
"phpunit/phpunit": "^12.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.11",
"symfony/phpunit-bridge": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"IM\\Fabric\\Bundle\\AndroidServicesBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IM\\Fabric\\Bundle\\AndroidServicesBundle\\Test\\": "tests/phpunit/"
}
},
"scripts": {
"check-coverage": "vendor/bin/phpunit --coverage-html build && open build/index.html",
"run-tests": "composer run-phpunit && composer run-phpcs && composer run-phpmd && composer run-phplint",
"run-phpcs": "vendor/bin/phpcs",
"run-phpcbf": "vendor/bin/phpcbf",
"run-phpmd": "vendor/bin/phpmd src text phpmd-src.xml && vendor/bin/phpmd tests text phpmd-test.xml",
"run-phplint": "vendor/bin/phplint",
"run-phpunit": "vendor/bin/phpunit --testdox"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}