forked from samsonos/php_core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 793 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 793 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
34
35
36
37
38
{
"name": "samsonphp/core",
"description": "SamsonPHP framework core module",
"keywords": [
"php",
"framework",
"samsonos",
"samsonphp"
],
"authors": [
{
"name": "Vitaly Iegorov",
"email": "egorov@samsonos.com"
}
],
"license": "Open Software License (OSL) v 3.0",
"homepage": "http://samsonphp.com/",
"autoload": {
"psr-4":{
"samsonphp\\core\\": "src/",
"samsonphp\\core\\tests\\": "tests/"
},
"files": ["src/bootstrap.php"]
},
"require": {
"samsonframework/base": "1.*",
"samsonframework/di": "1.*",
"samsonframework/psr": "*",
"samsonphp/event": "1.*",
"samsonphp/config": "1.*"
},
"require-dev": {
"phpunit/phpunit": "5.*"
},
"config":{
"github-protocols":["https"]
}
}