-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 1.08 KB
/
composer.json
File metadata and controls
33 lines (33 loc) · 1.08 KB
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
{
"name": "microsoft/msads",
"description": "This project provides the PHP client library for the REST-based Microsoft Ads API.",
"keywords": ["php", "bing ads", "bingads", "microsoft advertising", "microsoft ads", "ads", "msads", "sdk", "rest", "api"],
"homepage": "https://github.com/BingAds/BingAds-PHP-REST-SDK",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Microsoft Advertising",
"homepage": "https://github.com/BingAds/BingAds-PHP-REST-SDK/graphs/contributors"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^1.7 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"friendsofphp/php-cs-fixer": "^3.5",
"monolog/monolog": "^2.5"
},
"autoload": {
"psr-4": { "Microsoft\\MsAds\\Rest\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "Microsoft\\MsAds\\Rest\\Test\\" : "test/" }
}
}