-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 942 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
38
{
"name": "avaibooksports/redsys-operations-parser",
"description": "Redsys operations parser",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pablo Largo Mohedano",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"doctrine/collections": "^1.8"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"friendsofphp/php-cs-fixer": "^3.13",
"vimeo/psalm": "^5.9",
"rector/rector": "^0.15.24",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"AvaiBookSports\\Component\\RedsysOperationsParser\\": "src/"
}
},
"scripts": {
"fix": "./vendor/bin/php-cs-fixer fix",
"psalm": "./vendor/bin/psalm",
"phpunit": "./vendor/bin/phpunit"
},
"config": {
"platform": {
"php": "7.4"
}
}
}