This repository has been archived by the owner on Jun 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.66 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
{
"name": "nyco/eligibility-screening-library-php",
"description": "A Composer package for interacting with the NYC Opportunity Eligibility API.",
"version": "0.0.1",
"type": "library",
"license": "GPL-3.0+",
"authors": [
{
"name": "NYC Opportunity",
"email": "products@nycopportunity.nyc.gov",
"homepage": "https://nyc.gov/opportunity"
},
{
"name": "Devon Hirth",
"email": "dehirth@nycopportunity.nyc.gov",
"homepage": "https://github.com/devowhippit"
}
],
"require": {
"mustangostang/spyc": "^0.6.2",
"guzzlehttp/guzzle": "^6.3"
},
"autoload": {
"psr-4": {
"nyco\\EligibilityScreeningLibrary\\": "src/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"ResetPassword": [
"php -r 'include \"Tests.php\"; use Tests\\Tests; Tests::resetPassword();'"
],
"AuthToken": [
"php -r 'include \"Tests.php\"; use Tests\\Tests; Tests::authToken();'"
],
"EligibilityPrograms": [
"php -r 'include \"Tests.php\"; use Tests\\Tests; Tests::eligibilityPrograms();'"
],
"BulkSubmissionFile": [
"php -r 'include \"Tests.php\"; use Tests\\Tests; Tests::bulkSubmission(true);'"
],
"BulkSubmissionArray": [
"php -r 'include \"Tests.php\"; use Tests\\Tests; Tests::bulkSubmission();'"
],
"BulkSubmissionPrograms": [
"php -r 'include \"Tests.php\"; use Tests\\Tests; Tests::bulkSubmission(false, [\"S2R006\", \"S2R019\"]);'"
],
"lint": [
"vendor/bin/phpcs --standard=phpcs.xml --ignore=vendor/ ."
],
"fix": [
"vendor/bin/phpcbf --standard=phpcs.xml --ignore=vendor/ ."
]
}
}