-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 2.29 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
73
74
{
"name": "rrze/fau-studium-common",
"description": "Shared kernel for FAU Degree Program and FAU Degree Program Output plugins.",
"license": "GPL-2.0-or-later",
"type": "library",
"authors": [
{
"name": "Syde GmbH",
"email": "[email protected]",
"homepage": "https://syde.com/",
"role": "Company"
}
],
"require": {
"php": "^8.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^3.0",
"psr/simple-cache": "^3.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"brain/monkey": "^2.6",
"inpsyde/php-coding-standards": "^1",
"inpsyde/wp-stubs-versions": "dev-latest",
"johnpbloch/wordpress-core": "^6.1",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^5.4",
"wp-cli/wp-cli": "^2.7"
},
"suggest": {
"inpsyde/modularity": "Modular PSR-11 implementation for WordPress Plugins, Themes or Libraries"
},
"repositories": [
{
"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\\Common\\": "src/",
"Fau\\DegreeProgram\\Common\\LanguageExtension\\": "lib/lang-extension/src/"
}
},
"autoload-dev": {
"psr-4": {
"Fau\\DegreeProgram\\Common\\Tests\\": [
"tests/src/",
"tests/unit/",
"tests/functional/"
],
"Fau\\DegreeProgram\\Common\\LanguageExtension\\Tests\\": "lib/lang-extension/tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"check-coding-standards": "vendor/bin/phpcs",
"check-psalm": "vendor/bin/psalm --no-cache",
"fix-coding-standards": "vendor/bin/phpcbf",
"tests": "@php ./vendor/phpunit/phpunit/phpunit --coverage-text",
"tests:no-cov": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage"
}
}