-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
50 lines (50 loc) · 1.36 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
{
"name": "markstory/cakephp_geshi",
"description": "CakePHP plugin that integrates with Geshi Syntax highlighter.",
"type": "cakephp-plugin",
"keywords": ["cakephp", "geshi", "helper", "highlighting"],
"homepage": "https://github.com/markstory/cakephp_geshi",
"license": "MIT",
"authors": [
{
"name": "Mark Story",
"homepage": "http://mark-story.com",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/markstory/cakephp_geshi/issues",
"source": "https://github.com/markstory/cakephp_geshi"
},
"autoload": {
"psr-4": {
"Geshi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Geshi\\Test\\": "tests"
}
},
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0",
"cakephp/plugin-installer": "^2.0.1",
"geshi/geshi": "^1.0.9.1"
},
"require-dev": {
"phpunit/phpunit": "^10.1.0 <=10.5.3",
"cakephp/cakephp-codesniffer": "^5.0"
},
"scripts": {
"cs-check": "phpcs --colors -p src/ tests/",
"cs-fix": "phpcbf --colors -p src/ tests/"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}