forked from GSA/project-open-data-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 2 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
{
"name": "gsa/project-open-data-dashboard",
"description": "A Dashboard to Manage Project Open Data Information",
"keywords": ["json", "schema"],
"homepage": "https://github.com/GSA/project-open-data-dashboard/",
"type": "project",
"license": "",
"authors": [
{
"name": "Philip Ashlock",
"email": "[email protected]"
}
],
"repositories": [{
"type": "package",
"package": {
"name": "json-schema/JSON-Schema-Test-Suite",
"version": "1.1.0",
"source": {
"url": "https://github.com/json-schema/JSON-Schema-Test-Suite",
"type": "git",
"reference": "1.1.0"
}
}
}],
"require": {
"php": "^7.3.0",
"codeigniter/framework": "3.1.*",
"justinrainbow/json-schema": "~4",
"michelf/php-markdown": "*",
"salsify/json-streaming-parser": "~5",
"vlucas/phpdotenv": "^2.4",
"aws/aws-sdk-php": "*",
"symfony/http-foundation": "5.2.8"
},
"require-dev": {
"mikey179/vfsstream": "1.1.*",
"phpunit/phpunit": "^9.5",
"php-mock/php-mock-phpunit": "^2.6",
"kenjis/ci-phpunit-test": "^3.0"
},
"scripts": {
"test": "./vendor/bin/phpunit --do-not-cache-result --no-coverage --testdox -c application/tests",
"crawl-download": [
"Composer\\Config::disableProcessTimeout",
"php public/index.php campaign status omb-monitored download"
],
"crawl-full-scan": [
"Composer\\Config::disableProcessTimeout",
"php public/index.php campaign status omb-monitored full-scan"
]
},
"scripts-descriptions": {
"test": "Run PHPunit tests (assumes valid config in .env)"
},
"autoload": {
"psr-0": { "JsonSchema": "src/" }
},
"bin": ["bin/validate-json"],
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev"
}
}
}