-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 902 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
39
40
{
"name": "zegnat/innertext",
"type": "project",
"description": "",
"keywords": [
"HTML",
"CSS",
"plaintext"
],
"homepage": "https://github.com/Zegnat/php-innertext",
"license": "0BSD",
"authors": [
{
"name": "Martijn van der Ven",
"email": "martijn@vanderven.se",
"homepage": "https://vanderven.se/martijn/",
"role": "Developer"
}
],
"require": {
"php": "~7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"masterminds/html5": "^2.3",
"phpunit/phpunit": "^7.4"
},
"autoload": {
"psr-4": {
"Zegnat\\Innertext\\": "src/"
}
},
"scripts": {
"fix-style": "php-cs-fixer fix",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}