-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.23 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "68publishers/amp-client",
"description": "",
"keywords": ["68publishers", "amp", "amp-client"],
"license": "proprietary",
"authors": [
{
"name": "Tomáš Glawaty",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.7"
},
"require-dev": {
"ext-dom": "*",
"ext-libxml": "*",
"dg/bypass-finals": "^1.5",
"friendsofphp/php-cs-fixer": "^3.17",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.14",
"latte/latte": "^2.11 || ^3.0",
"mockery/mockery": "^1.6",
"nette/application": "^3.0.8",
"nette/bootstrap": "^3.1",
"nette/caching": "^3.1",
"nette/di": "^3.0.13",
"nette/tester": "^2.4",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-nette": "^1.2",
"psr/log": "^1.1",
"roave/security-advisories": "dev-latest",
"slope-it/clock-mock": "^0.4.0",
"wa72/html-pretty-min": "^0.2.0"
},
"conflict": {
"latte/latte": "<2.11",
"nette/application": "<3.0.8",
"nette/caching": "<3.1",
"nette/di": "<3.0.13"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"SixtyEightPublishers\\AmpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SixtyEightPublishers\\AmpClient\\Tests\\": "tests/"
}
}
}