-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 2.02 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "marwanalsoltany/gdpr-tools",
"type": "library",
"license": "MIT",
"description": "Sanitize any PHP application HTML response to be GDPR compliant.",
"keywords": [
"gdpr",
"gdpr-compliance",
"consent"
],
"authors": [
{
"name": "Marwan Al-Soltany",
"email": "[email protected]"
}
],
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/marwanalsoltany"
}
],
"homepage": "https://github.com/MarwanAlsoltany/gdpr-sanitizer/blob/master/README.md",
"support": {
"docs": "https://marwanalsoltany.github.io/gdpr-tools",
"source": "https://github.com/MarwanAlsoltany/gdpr-sanitizer",
"issues": "https://github.com/MarwanAlsoltany/gdpr-sanitizer/issues"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"MAKS\\GDPRTools\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MAKS\\GDPRTools\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.4-dev"
}
},
"scripts": {
"test": "phpunit",
"compile": "php --define phar.readonly=0 ./bin/compile",
"document": "([ -f ./phpDocumentor.phar ] && php phpDocumentor.phar) || echo phpDocumentor.phar is not available in CWD",
"build": [
"@test",
"@compile",
"@document"
],
"build-dev": [
"composer run-script build --dev --verbose",
"echo ! && echo ! Development build completed! && echo !"
],
"build-prod": [
"composer run-script build --quiet",
"echo ! && echo ! Production build completed! && echo !"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": false,
"process-timeout": 0
},
"prefer-stable": true
}