forked from Lullabot/amp-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 935 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
{
"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",
"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": "^7.0.1",
"masterminds/html5": "^2.5"
},
"autoload": {
"classmap": [
"src/Spec/validator-generated.php"
],
"psr-4": {
"Lullabot\\AMP\\": "src"
}
},
"require-dev": {
"php": ">=5.5",
"phpunit/phpunit": "4.8.* || ^6 || ^9",
"symfony/console": "^2.7.0"
}
}