-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.19 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "surfoo/geocaching-api-demo",
"description": "Geocaching PHP SDK Demo",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Surfoo",
"email": "surfooo@gmail.com"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"GeoDemo\\": "src/"
}
},
"require": {
"php": "^8.2",
"twig/twig": "^3.0",
"surfoo/geocaching-php-sdk": "dev-feat-v4",
"twbs/bootstrap": "^5.0",
"symfony/error-handler": "^7.0 || ^8.0"
},
"require-dev": {
"phpstan/phpstan": "^2.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
}
}
}