-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
66 lines (66 loc) · 1.6 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
57
58
59
60
61
62
63
64
65
66
{
"name": "grrr-amsterdam/garp3",
"description": "Framework and CMS built on top of Zend Framework.",
"license": "BSD-3-Clause",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"ext-json": "*",
"google/apiclient": "^1.1",
"ezyang/htmlpurifier": "^4.12",
"dompdf/dompdf": "^0.8.0",
"tedivm/jshrink": "1.1.0",
"vlucas/phpdotenv": "^v5.4",
"fzaninotto/faker": "dev-master",
"grrr-amsterdam/garp-functional": "^5.0",
"greenlion/php-sql-parser": "^4.1",
"league/csv": "^8.0",
"aws/aws-sdk-php": "^3.87",
"sentry/sdk": "^3.0",
"shardj/zf1-future": "^1.16.1",
"guzzlehttp/guzzle": "^6|^7"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-0": {
"Garp_": "library/"
},
"files": [
"application/functions.php"
],
"classmap": [
"application/modules/g/controllers",
"application/modules/g/views/helpers",
"packages/phpoffice-phpexcel/Classes"
]
},
"autoload-dev": {
"psr-0": {
"Mock_": "tests/mocks"
}
},
"include-path": [
"library/"
],
"scripts": {
"test": "phpunit --verbose --colors --bootstrap tests/TestHelper.php tests/",
"phpcs": "vendor/bin/phpcs --standard=./phpcs.xml --extensions=php --colors ."
},
"suggest": {
"phpunit/phpunit": "Required to use assertions and run tests (^6|^7)."
},
"bin": [
"scripts/g"
],
"config": {
"allow-plugins": {
"php-http/discovery": true,
"ocramius/package-versions": true
}
}
}