-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 809 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 809 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
{
"name": "collin_peng/project_manager",
"type": "project",
"description": "A simple project manager tool.",
"authors": [
{
"name": "CollinPeng",
"email": "pengcoltom@gmail.com"
}
],
"autoload": {
"psr-4": {
"App\\": "src/",
"Test\\": "tests/"
}
},
"require": {
"php": ">=7.0",
"robmorgan/phinx": "^0.12.1",
"symfony/yaml": "^5.1",
"slim/slim": "^4.5",
"php-di/slim-bridge": "^3.0",
"zircote/swagger-php": "^3.0",
"mnapoli/silly": "^1.7",
"slim/psr7": "^1.1",
"usmanhalalit/pixie": "^2.0",
"twig/twig": "^1.18",
"firebase/php-jwt": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "^9.2"
}
}