-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 1.03 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
{
"name": "bullsoft/fp-project",
"description": "Phalcon+ application skeleton",
"homepage": "http://phalconphp.org",
"authors": [{"name": "顾伟刚", "email": "[email protected]"}],
"require": {
"bullsoft/falconplus-common": "3.*",
"league/climate": "*",
"mnsami/composer-custom-directory-installer": "*",
"league/flysystem": "1.*",
"guzzlehttp/guzzle": "~6.0",
"doctrine/annotations":"^1.6",
"laminas/laminas-code": "*",
"laminas/laminas-stdlib": "*",
"psr/container": "*",
"psx/schema": "^2.4",
"php-pm/php-pm": "^2.0"
},
"extra": {
"installer-paths": {
"./common": ["bullsoft/falconplus-common"]
}
},
"autoload": {
"psr-4": {
"PHPPM\\Bridges\\PhalconPlus\\": "common/vendor/PHPPM",
"BullSoft\\": "common/vendor/BullSoft"
}
},
"config": {
"allow-plugins": {
"mnsami/composer-custom-directory-installer": true
}
}
}