-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.88 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "elliotjreed/royal-mail-tracking",
"description": "A library for interacting with the Royal Mail tracking service",
"keywords": [
"elliotjreed",
"royal-mail-tracking"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Elliot J. Reed",
"email": "[email protected]",
"homepage": "https://github.com/elliotjreed",
"role": "Developer"
}
],
"homepage": "https://github.com/elliotjreed/royal-mail-tracking",
"autoload": {
"psr-4": {
"ElliotJReed\\RoyalMail\\Tracking\\": "src/ElliotJReed/RoyalMail/Tracking"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\ElliotJReed\\RoyalMail\\Tracking\\": "tests/ElliotJReed/RoyalMail/Tracking"
}
},
"require": {
"php": "^8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0|^7.0",
"symfony/property-access": "^6.0|^7.0",
"symfony/serializer": "^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"phpunit/phpunit": "^11.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "*"
},
"scripts": {
"test": [
"@phpunit:coverage",
"@phpcs"
],
"phpunit": "vendor/bin/phpunit -c phpunit.xml",
"phpunit:debug": "vendor/bin/phpunit --stop-on-failure -c phpunit.xml",
"phpunit:coverage": "vendor/bin/phpunit -c phpunit.xml --coverage-html ./coverage --coverage-text",
"phpunit:ci": "mkdir -p ./build/logs && vendor/bin/phpunit -c phpunit.xml --coverage-text=coverage.txt --coverage-clover ./build/logs/clover.xml",
"phpcs": "vendor/bin/php-cs-fixer fix --allow-risky=yes && vendor/bin/phpcs --standard=phpcs.xml",
"phpcs:ci": "vendor/bin/php-cs-fixer fix --dry-run --allow-risky=yes --using-cache=no --format=checkstyle"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}