-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 946 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
34
35
36
37
{
"name": "shapin/stripe",
"description": "PHP client for Stripe API",
"license": "MIT",
"keywords": ["api", "stripe"],
"authors": [
{
"name": "Olivier Dolbeaua",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"moneyphp/money": "^3.1",
"symfony/config": "^4.3 || ^5.0",
"symfony/http-foundation": "^4.3 || ^5.0",
"symfony/http-client": "^4.3 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"symfony/phpunit-bridge": "^4.4 || ^5.0"
},
"autoload": {
"psr-4": {
"Shapin\\Stripe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shapin\\Stripe\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}