-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 928 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
{
"name": "prezent/inky",
"description": "PHP implementation of Zurb's Inky parser",
"type": "library",
"license": "MIT",
"keywords": ["email", "responsive", "foundation", "inky"],
"homepage": "http://www.prezent.nl",
"authors": [
{
"name": "Sander Marechal",
"email": "[email protected]"
},
{
"name": "Prezent Internet B.V.",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Prezent\\Inky\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Prezent\\Inky\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"require": {
"ext-dom": "*",
"php": "^7.0|^8.0"
},
"require-dev": {
"symfony/dom-crawler": "^3.4|^4.0|^5,0",
"symfony/css-selector": "^3.4|^4.0|^5.0"
}
}