forked from TAMULib/Pipit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 855 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
{
"name": "tamu-lib/pipit",
"type": "library",
"description": "A basic PHP framework for web app development",
"keywords": ["MVC","Framework"],
"homepage": "https://github.com/TAMULib/Pipit",
"license": "MIT",
"authors": [
{
"name": "Jason Savell",
"email": "[email protected]",
"homepage": "https://github.com/jsavell",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"psr/log": "^1.1"
},
"autoload": {
"psr-4": {
"Pipit\\": "src/Pipit"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"TestFiles\\": "tests/TestFiles/"
}
},
"require-dev": {
"codeception/codeception": "^4.1",
"phpstan/phpstan": "^1.5"
}
}