-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1.06 KB
/
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
36
37
38
39
40
41
42
43
{
"name": "surfoo/geocaching-api-demo",
"description": "Geocaching PHP SDK Demo",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Surfoo",
"email": "[email protected]"
}
],
"prefer-stable": true,
"require": {
"php": "^8.1",
"twig/twig": "^3.0",
"surfoo/geocaching-php-sdk": "^4.0.0-rc",
"twbs/bootstrap": "^5.0",
"symfony/error-handler": "^6.2"
},
"require-dev": {
"phpstan/phpstan": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"scripts": {
"assets": [
"cp -r vendor/twbs/bootstrap/dist/* public/assets/bootstrap/"
],
"post-install-cmd": [
"cp -n app/config.dist.php app/config.php",
"@assets"
],
"post-update-cmd": [
"@assets"
],
"phpstan": "vendor/bin/phpstan analyse",
"php-cs-fixer": "php-cs-fixer fix"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}