forked from Lullabot/amp-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 1023 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
{
"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.6",
"querypath/querypath": "^3.0.4",
"sebastian/diff": "^1.2 || ^2 || ^3 || ^4",
"marc1706/fast-image-size": "1.*",
"sabberworm/php-css-parser": "^8.0.0",
"guzzlehttp/guzzle": "~6.1 || ^7.4.5",
"masterminds/html5": "^2.5"
},
"autoload": {
"classmap": ["src/Spec/validator-generated.php"],
"psr-4": {"Lullabot\\AMP\\": "src"}
},
"require-dev": {
"phpunit/phpunit": "^5.6.3 || ^6",
"symfony/console": "^2.7.0"
},
"scripts": {
"test": "phpunit tests"
}
}