-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
36 lines (36 loc) · 866 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
36
{
"name": "johnkary/php-skeleton",
"description": "Base project skeleton for a PHP 8.1+ project",
"keywords": ["PHP", "example", "project", "skeleton"],
"homepage": "https://github.com/johnkary/skeleton",
"license": "MIT",
"authors": [
{
"name": "John Kary",
"email": "[email protected]",
"homepage": "https://johnkary.net",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"phpunit/phpunit": "^9.6",
"symfony/console": "^5.2"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
}
}