-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·74 lines (74 loc) · 1.61 KB
/
composer.json
File metadata and controls
executable file
·74 lines (74 loc) · 1.61 KB
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": "tjoussen/co-source-code",
"description": "Adds a modern source code text node to the ilias customize page feature",
"keywords": [
"ilias",
"plugin",
"Services",
"COPage",
"PageComponent",
"SourceCode"
],
"type": "plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Thomas Joußen",
"email": "tjoussen91@gmail.com"
}
],
"require": {
"php": ">=7.4|8.0.*",
"scrivo/highlight.php": "v9.18.1.10",
"thojou/ilias-plugin-utils": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"friendsofphp/php-cs-fixer": "^3.23"
},
"autoload": {
"psr-4": {
"CoSourceCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CoSourceCode\\Tests\\": "tests/"
}
},
"extra": {
"ilias-plugin": {
"id": "cosrc",
"version": "1.0.1",
"min_version": "8",
"max_version": "8.999"
}
},
"config": {
"classmap-authoritative": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"check": [
"@cs-fixer:check",
"@phpstan",
"@test:coverage"
],
"dev": [
"@cs-fixer:fix",
"@phpstan",
"@test"
],
"cs-fixer:check": "php-cs-fixer fix --dry-run --diff -v",
"cs-fixer:fix": "php-cs-fixer fix --diff -v",
"phpstan": "phpstan analyse --memory-limit=1G",
"test": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-clover=clover.xml"
}
}