-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 921 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 921 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
{
"name": "gotryiton/gotron",
"type": "library",
"description": "Gotron is a web application framework for PHP developers",
"keywords": ["gotron", "framework"],
"homepage": "http://github.com/gotryiton/gotron",
"license": "MIT",
"repositories": [
{"type": "vcs", "url": "https://github.com/gotryiton/php-activerecord"},
{"type": "vcs", "url": "https://github.com/gotryiton/elasticsearch"}
],
"require": {
"aura/autoload": "1.0.*",
"pda/pheanstalk": "dev-master",
"rmccue/requests": "dev-master",
"swiftmailer/swiftmailer": "v4.3.0",
"lespoilus/spyc": "dev-master",
"gotryiton/php-activerecord": "dev-master",
"gotryiton/elasticsearch": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"autoload" : {
"psr-0": {
"Gotron" : "lib/"
},
"files": [
"lib/Gotron/Utility.php",
"lib/Gotron/View/Helpers.php"
]
}
}