-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 860 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 860 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
38
{
"name": "thorsten/phpmyfaq-api-app",
"description": "Mini Symfony-based API for phpMyFAQ version and verification endpoints",
"type": "project",
"license": "MPL-2.0",
"authors": [
{
"name": "Thorsten Rinne",
"email": "thorsten@phpmyfaq.de"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"symfony/http-foundation": "^7.3",
"symfony/routing": "^7.3",
"symfony/framework-bundle": "^7.3"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"symfony/phpunit-bridge": "^7.3",
"symfony/browser-kit": "^7.3",
"symfony/dom-crawler": "^7.3"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"serve": "php -S localhost:3000 -t public",
"test": "vendor/bin/phpunit"
}
}