-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1010 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 1010 Bytes
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
{
"name": "isprambiente/pdnd-client",
"description": "Client PHP per autenticazione e chiamata API PDND (Piattaforma Digitale Nazionale Dati).",
"type": "library",
"keywords": ["pdnd","php","client","api","authentication"],
"homepage": "https://github.com/isprambiente/pdnd-php-client",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Francesco Loreti",
"email": "francesco.loreti@isprambiente.it",
"role": "Developer"
}
],
"require": {
"php": ">=8.4",
"firebase/php-jwt": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^12.2",
"squizlabs/php_codesniffer": "^4.0",
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
"Pdnd\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"lint": "vendor/bin/phpcs",
"fix": "vendor/bin/php-cs-fixer fix --allow-unsupported-php-version=yes",
"stan": "vendor/bin/phpstan analyse"
}
}