-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.87 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": "melonsmasher/ethos-php",
"description": "A PHP library to interact with the Ellucian Ethos API.",
"keywords": [
"ellucian",
"ethos",
"banner",
"colleague",
"api",
"erp",
"college",
"higher-ed"
],
"type": "library",
"homepage": "https://github.com/MelonSmasher/ethos-php",
"license": "MIT",
"authors": [
{
"name": "Alex Markessinis",
"email": "markea125@gmail.com"
}
],
"support": {
"issues": "https://github.com/MelonSmasher/ethos-php/issues",
"source": "https://github.com/MelonSmasher/ethos-php"
},
"require": {
"php": ">=7.2.0",
"ext-json": "*",
"guzzlehttp/guzzle": "~7.0",
"myclabs/php-enum": "^1.8"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"MelonSmasher\\EthosPHP\\": "src/",
"MelonSmasher\\EthosPHP\\Admin\\": "src/Admin/",
"MelonSmasher\\EthosPHP\\Finance\\": "src/Finance/",
"MelonSmasher\\EthosPHP\\FinancialAid\\": "src/FinancialAid/",
"MelonSmasher\\EthosPHP\\Foundation\\": "src/Foundation/",
"MelonSmasher\\EthosPHP\\HumanResources\\": "src/HumanResources/",
"MelonSmasher\\EthosPHP\\Recruitment\\": "src/Recruitment/",
"MelonSmasher\\EthosPHP\\Student\\": "src/Student/",
"MelonSmasher\\EthosPHP\\Util\\": "src/Util/",
"MelonSmasher\\EthosPHP\\Exception\\": "src/Exception/",
"MelonSmasher\\EthosPHP\\Subscriptions\\": "src/Subscriptions/"
}
},
"scripts": {
"docs": [
"tools/phploc --log-xml=build/phploc.xml src",
"tools/phpmd src xml cleancode,design,unusedcode > build/pmd.xml || true",
"tools/phpcs --report=xml --report-file=build/phpcs.xml src/ || true",
"tools/phpdox",
"mv docs .docs",
"mv .docs/html docs",
"rm -rf .docs/"
]
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}