-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
33 lines (33 loc) · 907 Bytes
/
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
{
"name": "justinhook/royal-mail-price-calculator",
"description": "A library to calculate the cost of sending a package with Royal Mail.",
"keywords": ["royal mail", "postage", "calculator"],
"homepage": "https://github.com/JustinHook/royal-mail-price-calculator",
"authors": [
{
"name": "Justin Hook"
}
],
"support": {
"issues": "https://github.com/JustinHook/royal-mail-price-calculator/issues"
},
"license": "MIT",
"require": {
"doctrine/inflector": "1.*",
"symfony/yaml": "2.*"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"squizlabs/php_codesniffer": "1.*"
},
"autoload": {
"psr-4": {
"RoyalMailPriceCalculator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RoyalMailPriceCalculator\\Tests\\": "tests/"
}
}
}