-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
54 lines (54 loc) · 1.08 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "pecee/framework",
"description": "Simple, lightweight PHP framework based on Microsoft MVVM.",
"keywords": [
"fast",
"speed",
"framework",
"pecee"
],
"license": "MIT",
"homepage": "http://www.pecee.dk",
"support": {
"source": "https://github.com/skipperbent/pecee"
},
"authors": [
{
"name": "Simon Sessingø",
"email": "simon.sessingoe@gmail.com"
}
],
"require": {
"php": ">=8.0",
"josegonzalez/dotenv": "3.*",
"pecee/simple-router": "^5.0",
"robmorgan/phinx": "^0.13.4",
"nesbot/carbon": "2.*",
"laravel/serializable-closure": "^1.3",
"ext-json": "*",
"ext-mbstring": "*",
"ext-fileinfo": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1",
"pecee/pixie": "^4.0"
},
"suggest": {
"filp/whoops": "^2.1",
"pecee/pixie": "^4.0",
"pda/pheanstalk": "^4.0"
},
"autoload": {
"psr-4": {
"Pecee\\": "src/"
},
"files": [
"helpers.php"
]
},
"config": {
"preferred-install": "dist"
}
}