forked from pragma-framework/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.12 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
{
"name": "pragma-framework/core",
"description": "The Pragma Core Module for Pragma Framework",
"license": "MIT",
"keywords": ["pragma", "framework", "core", "orm", "router", "model", "view", "controller"],
"authors": [
{"name": "Cyril Rouyer"}
],
"require": {
"php": ">=7.0",
"ext-PDO": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "6.5.14",
"phpunit/dbunit": "^3.0.3"
},
"autoload": {
"psr-0" : { "Pragma" : "." }
},
"suggest": {
"ext-pdo_mysql": "^7.0",
"ext-pdo_sqlite": "^7.0",
"ext-pdo_pgsql": "^7.0",
"pragma-framework/auth-session": "Simple user authentication based on PHP Session",
"pragma-framework/forms": "Quickly build Forms with CSRF Protection"
},
"scripts": {
"post-package-install": [
"Pragma\\Helpers\\Migrate::postPackageInstall"
],
"post-package-update": [
"Pragma\\Helpers\\Migrate::postPackageUpdate"
],
"pre-package-uninstall": [
"Pragma\\Helpers\\Migrate::prePackageUninstall"
]
}
}