-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.65 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.65 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
{
"name": "ubertech-za/asciidoctor-wrapper",
"version": "0.1.0",
"description": "PHP wrapper for Asciidoctor with configurable styling and theming support",
"type": "library",
"require": {
"php": "^8.2",
"ext-json": "*"
},
"suggest": {
"illuminate/support": "Required for Laravel integration (^10.0|^11.0|^12.0)",
"illuminate/config": "Required for Laravel configuration (^10.0|^11.0|^12.0)",
"illuminate/filesystem": "Required for file operations (^10.0|^11.0|^12.0)"
},
"license": "MIT",
"authors": [
{
"name": "Uber Technologies cc"
}
],
"homepage": "https://github.com/ubertech-za/asciidoctor-wrapper",
"support": {
"issues": "https://github.com/ubertech-za/asciidoctor-wrapper/issues",
"source": "https://github.com/ubertech-za/asciidoctor-wrapper"
},
"autoload": {
"psr-4": {
"UbertechZa\\AsciidoctorWrapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UbertechZa\\AsciidoctorWrapper\\Tests\\": "tests/"
}
},
"require-dev": {
"pestphp/pest": "^3.0",
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^1.11",
"laravel/pint": "^1.0",
"mockery/mockery": "^1.6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "pest",
"format": "pint",
"analyse": "phpstan analyse"
},
"extra": {
"laravel": {
"providers": [
"UbertechZa\\AsciidoctorWrapper\\Laravel\\AsciidoctorWrapperServiceProvider"
],
"aliases": {
"Asciidoctor": "UbertechZa\\AsciidoctorWrapper\\Facades\\Asciidoctor"
}
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}