-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 868 Bytes
/
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
{
"name": "touhonoob/phalcon-blacklist",
"version": "1.0.0",
"type": "library",
"require": {
"ext-redis": "^2.2",
"ext-phalcon": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^4.6.6",
"fzaninotto/faker": "v1.4.0",
"phalcon/devtools": "2.0.1"
},
"license": "MIT",
"authors": [
{
"name": "touhonoob",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PhalconBlacklist\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhalconBlacklist\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"mkdir .phalcon",
"./vendor/bin/phalcon.php migration run --config=configs.php --migrations=migrations --version=1.0.0"
]
}
}