-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 982 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": "shakaran/adstxtparser",
"type": "library",
"description": "A open source implemation in PHP of Ads.txt Specification Version 1.0.1 (OpenRTB working group)",
"homepage": "https://shakaran.net/blog",
"readme": "README.md",
"license": "AGPL-3.0-or-later",
"keywords" : [
"adstxtparser",
"php",
"parser",
"ads",
"adstxt",
"openrtb",
"specification"
],
"authors": [
{
"name": "Ángel Guzmán Maeso",
"email": "[email protected]",
"homepage": "https://shakaran.net/blog",
"role": "Main Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/shakaran/adstxtparser/issues"
},
"autoload": {
"psr-4": {"AdsTxtParser\\": "./"}
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5"
}
}