-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
42 lines (42 loc) · 1.13 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
{
"name": "culturekings/afterpay",
"description": "Integrate easily with the afterpay.com.au API",
"keywords": ["afterpay", "payments", "shopping"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jared Fraser",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:culturekings/Symfony2-coding-standard.git"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "^6.0",
"jms/serializer": "^1.2",
"psr/log": "^1.0",
"nesbot/carbon": "^1.21",
"symfony/yaml": "^3.1"
},
"require-dev": {
"phpspec/phpspec": "^3.0",
"henrikbjorn/phpspec-code-coverage": "^3.0",
"symfony/var-dumper": "^3.1",
"squizlabs/php_codesniffer": "~3.0.1",
"sebastian/phpcpd": "^2.0",
"satooshi/php-coveralls": "dev-master",
"symfony/console": "^3.1"
},
"autoload": {
"psr-4": {
"CultureKings\\Afterpay\\": "src/"
}
}
}