-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.71 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ovr/phalcon-module-skeleton",
"description": "Example for easy start with Phalcon + Phalcony sublib.",
"url": "https://github.com/ovr/phalcon-module-skeleton",
"license": "MIT",
"type": "project",
"keywords": [
"phalcon",
"skeleton",
"user",
"rest",
"api",
"oauth"
],
"require": {
"php": ">=5.4",
"ext-json": "*",
"ovr/phalcony": "~0.2.4",
"phalconeye/framework": "0.5.*@dev",
"symfony/console": "*",
"socialconnect/auth": "~0.2",
"ovr/phalcon-pretty-exceptions": "dev-master",
"zazza/phalcon2-debug-widget": "dev-master",
"phalcon-ext/mailer": "^2.0",
"m1ome/phalcon-datatables": "^1.1",
"paragonie/random_compat": "1.2.*",
"swiftmailer/swiftmailer": "^5.4",
"paypal/rest-api-sdk-php": "*",
"skleeschulte/base32": "^0.0.2",
"phpoffice/phpexcel": "^1.8",
"league/flysystem": "^1.0",
"spipu/html2pdf": "^5.0"
},
"require-dev": {
"composer/composer": "1.0.*@dev",
"squizlabs/php_codesniffer": "~2.2"
},
"autoload": {
"psr-4": {
"App\\": "library/"
}
},
"authors": [
{
"name": "Patsura Dmitry",
"email": "[email protected]"
}
],
"scripts": {
"post-root-package-install": [
"App\\Composer\\ScriptHandler::install"
],
"post-install-cmd": [
"App\\Composer\\ScriptHandler::build"
],
"post-update-cmd": [
"App\\Composer\\ScriptHandler::build"
]
},
"extra": {
"app-dir": "application",
"web-dir": "public"
}
}