-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.19 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "avvertix/html-shot",
"description": "HTML to image rendering for PHP, powered by Rust and Takumi",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.3",
"ext-ffi": "*"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"phpstan/phpstan": "^2.0",
"symfony/var-dumper": "^6.4|^7.0|^8.0",
"laravel/pint": "^1.29"
},
"autoload": {
"psr-4": {
"HtmlShot\\": "src/HtmlShot/"
}
},
"autoload-dev": {
"psr-4": {
"HtmlShot\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": "HtmlShot\\Composer\\Installer::downloadArtifact",
"post-update-cmd": "HtmlShot\\Composer\\Installer::downloadArtifact",
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/phpstan analyse",
"format": "vendor/bin/pint"
},
"extra": {
"artifacts": {
"linux-x86_64": "https://github.com/avvertix/html-shot/releases/download/v0.1.0/libtakumi_php.so",
"darwin-arm64": "https://github.com/avvertix/html-shot/releases/download/v0.1.0/libtakumi_php.dylib",
"windows-64": "https://github.com/avvertix/html-shot/releases/download/v0.1.0/takumi_php.dll"
}
},
"archive": {
"exclude": ["examples", "rust"]
}
}