forked from Lullabot/amp-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 984 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
{
"name": "lullabot/amp",
"description": "A set of useful classes and utilities to convert html to AMP html (See https://www.ampproject.org/)",
"authors": [
{
"name": "Sidharth Kshatriya",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"keywords": ["Drupal", "AMP", "mobile"],
"homepage": "https://github.com/Lullabot/amp-library",
"require" : {
"php" : ">=5.5.0",
"querypath/QueryPath": ">=3.0.4",
"sebastian/diff": "^1.2 || ^2 || ^3",
"marc1706/fast-image-size": "1.*",
"masterminds/html5": "^2.2.0",
"sabberworm/php-css-parser": "^8.0.0",
"guzzlehttp/guzzle": "~6.1"
},
"autoload": {
"classmap": ["src/Spec/validator-generated.php"],
"psr-4": {"Lullabot\\AMP\\": "src"}
},
"require-dev": {
"php" : ">=5.5.0",
"phpunit/phpunit": "4.8.* || ^6",
"symfony/console": "^2.7.0"
}
}