-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 898 Bytes
/
composer.json
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
{
"name": "dribes/metar",
"description": "Una llibreria per obtenir el METAR d'un aeroport utilitzant la API de Aviation Weather Center i codis ICAO.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel Ribes",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"dribes\\MetarParser\\": "src/MetarParser/"
}
},
"autoload-dev": {
"psr-4": {
"dribes\\MetarParser\\Tests\\": "tests/MetarParser/"
}
},
"scripts": {
"test": "phpunit",
"lint": "phpstan analyse src --level=max",
"fix-style": "php-cs-fixer fix"
}
}