-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.08 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
{
"name": "denysxavier/ssrs-wrapper",
"description": "SSRS Wrapper are classes designed to facilitate the integration with Microsoft SQL Reporting Services via URL calls.",
"type": "library",
"license": "Apache-2.0",
"homepage": "https://github.com/DenysXavier/SSRSWrapper",
"support": {
"issues": "https://github.com/DenysXavier/SSRSWrapper/issues",
"source": "https://github.com/DenysXavier/SSRSWrapper"
},
"authors": [
{
"name": "Denys Xavier",
"email": "denysxavier.github@outlook.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"fzaninotto/faker": "^1.9",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"DenysXavier\\SSRSWrapper\\": "src/"
}
},
"scripts": {
"cs": "phpcs",
"md": "phpmd ./src ansi ./rulesets.xml",
"cbf": "phpcbf",
"test": "php ./vendor/phpunit/phpunit/phpunit"
}
}