-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 2.13 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
67
68
69
70
71
72
{
"name": "rrze/fau-studium-embed",
"description": "Fetch degree programs via the REST API and display them.",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "Syde GmbH",
"email": "[email protected]",
"homepage": "https://syde.com/",
"role": "Company"
}
],
"require": {
"php": "^8.0",
"inpsyde/assets": "^2.8",
"rrze/fau-studium-common": "dev-main",
"inpsyde/modularity": "^1.5",
"inpsyde/wp-context": "^1.5"
},
"require-dev": {
"inpsyde/php-coding-standards": "@stable",
"inpsyde/wp-stubs-versions": "dev-latest",
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^5.7"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/RRZE-Webteam/FAU-Studium-Common"
},
{
"type": "composer",
"url": "https://raw.githubusercontent.com/inpsyde/wp-stubs/main",
"only": [
"inpsyde/wp-stubs-versions"
]
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Fau\\DegreeProgram\\Output\\": "src/"
},
"files": [
"inc/api.php"
]
},
"autoload-dev": {
"psr-4": {
"Fau\\DegreeProgram\\Output\\Tests\\": [
"tests/php/unit/"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"inpsyde/*": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"check-coding-standards": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"check-psalm": "@php ./vendor/vimeo/psalm/psalm --output-format=compact --no-cache",
"fix-coding-standards": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"tests": "@php ./vendor/phpunit/phpunit/phpunit --coverage-text",
"tests:no-cov": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage"
}
}