-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1 KB
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
{
"name": "samsonos/php_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":{
"samson\\core\\": "src/",
"samsonphp\\core\\": "src/"
},
"files": ["src/samson.php"]
},
"require": {
"samsonframework/base": "1.*",
"samsonframework/resource": "1.*",
"samsonphp/event": "1.*",
"samsonphp/composer": "1.*",
"samsonphp/config": "1.*",
"samsonos/php_url": "*",
"samsonframework/container": "*",
"samsonframework/container-xml": "^1.0",
"samsonframework/container-annotation": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "5.*"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config":{
"github-protocols":["https"]
}
}