-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.06 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
{
"name": "objective-php/application",
"description": "Objective PHP applicative framework",
"type": "framework",
"keywords": [
"framework",
"objective php"
],
"homepage": "https://github.com/objective-php/application",
"license": "GPL-3.0",
"authors": [
{
"name": "Gauthier 'Rusty' Delamarre",
"email": "[email protected]",
"role": "lead"
}
],
"require": {
"php": ">=7.3",
"objective-php/primitives": "^1.3.0",
"objective-php/cli": "^3.0.0",
"objective-php/matcher": "^1.0.0",
"objective-php/config": "^3.0.0",
"objective-php/notification": "^1.0.0",
"objective-php/services-factory": "^3.0.1",
"objective-php/events-handler": "^2.0.0",
"objective-php/router": "^3.0.0",
"psr/http-server-handler": "^1.0",
"zendframework/zend-diactoros": "^1.7",
"psr/http-server-middleware": "^1.0",
"objective-php/filter": "^1.0.0"
},
"require-dev": {
"codeception/codeception": "^3.0"
},
"autoload": {
"psr-4": {
"ObjectivePHP\\Application\\": "src/"
}
}
}