-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.2 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.2 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
{
"name": "o2system/spl",
"license": "MIT",
"description": "O2System Standard PHP Library (SPL) it's build based on original standard PHP library. It's made up primarily of commonly needed datastructure classes, iterators, handlers and exceptions for O2System PHP Framework, but also can be used independently outside O2System PHP Framework environment.",
"type": "package",
"keywords": [
"utilities",
"php",
"framework",
"libraries",
"interfaces"
],
"authors": [
{
"name": "Steeven Andrian Salim",
"email": "steevenz@steevenz.com",
"homepage": "http://www.steevenz.com",
"role": "Founder and Lead Project"
},
{
"name": "Teguh Rianto",
"email": "teguh.rianto22@gmail.com",
"homepage": "http://teguhrianto22.pusku.com",
"role": "Template Designer"
}
],
"support": {
"email": "o2system.framework@gmail.com",
"issues": "https://github.com/o2system/spl/issues",
"forum": "https://www.facebook.com/groups/498147006994512"
},
"require": {
"php": "^7.2.0",
"o2system/psr": "^v1.2",
"ext-json": "*",
"ext-fileinfo": "*"
},
"autoload": {
"psr-4": {
"O2System\\Spl\\": "src"
}
}
}