forked from michaeldouglas/laravel-pagseguro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.04 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
{
"name": "michael/laravel-pagseguro",
"description": "Biblioteca de integração com o gateway de pagamento PagSeguro.",
"keywords": ["framework", "laravel", "Gateway Pagamento", "PagSeguro"],
"license": "MIT",
"type": "library",
"require": {
"php": ">=5.4.0",
"ext-curl": "*",
"lib-curl": "*",
"lib-openssl": "*",
"lib-libxml": "*",
"illuminate/validation": ">=4.2"
},
"require-dev": {
"phpunit/phpunit": "4.0.*"
},
"autoload": {
"psr-0":{
"laravel\\pagseguro\\": "src/"
}
},
"authors": [
{
"name": "Michael Douglas Barbosa Araujo",
"email": "[email protected]"
},
{
"name": "Isaque de Souza Barbosa",
"email": "[email protected]"
}
],
"scripts": {
"test:unit": "phpunit -c phpunit.xml tests/unit --coverage-html=./tests/phpunit"
},
"config":{
"bin-dir": "bin/"
},
"minimum-stability": "dev"
}