-
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.13 KB
/
Copy pathcomposer.json
File metadata and controls
43 lines (43 loc) · 1.13 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": "kallefrombosnia/tinypdf-php",
"description": "Minimal PDF creation library for PHP 8.2+. Zero dependencies, strongly typed, clean code.",
"type": "library",
"keywords": ["pdf", "pdf-generation", "tinypdf", "document", "markdown"],
"license": "MIT",
"authors": [
{
"name": "Izet Mulalic"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"pestphp/pest": "^3.0",
"phpstan/phpstan": "^2.0",
"pestphp/pest-plugin-arch": "^3.0",
"phpstan/extension-installer": "^1.0"
},
"autoload": {
"psr-4": {
"TinyPdf\\": "src/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"test:types": "phpstan analyse --memory-limit=512M",
"test:unit": "pest",
"test:unit:coverage": "pest --coverage --min=90",
"test:arch": "pest --filter=ArchTest",
"test": [
"@test:types",
"@test:arch",
"@test:unit"
]
}
}