-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.02 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.02 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
{
"name": "andersonls/zpl",
"type": "library",
"description": " This library is a php wrapper for the ZPL Programming Language.",
"keywords": ["zpl", "php-wrapper"],
"minimum-stability": "dev",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/andersonls/zpl",
"require": {
"php": ">=8.2"
},
"require-dev": {
"ext-gd": "*",
"ext-sockets": "*",
"laravel/pint": "^1.0",
"phpunit/phpunit": "^11.5|^12.4",
"phpstan/phpstan": "^2.1"
},
"suggest": {
"ext-gd": "*",
"ext-sockets": "*"
},
"autoload": {
"psr-4": {
"Zpl\\": "src/"
},
"psr-0": {
"Zpl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zpl\\Tests\\": "tests/"
},
"psr-0": {
"Zpl\\Tests\\": "tests/"
}
},
"scripts": {
"tests": "./vendor/bin/phpunit",
"format": "./vendor/bin/pint",
"analyse": "./vendor/bin/phpstan analyse"
},
"authors": [
{
"name": "Anderson Luiz Silvério",
"email": "andersonlsilverio@gmail.com"
}
]
}