-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
40 lines (40 loc) · 1.08 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
{
"require" : {
"composer/composer" : "~1.0.0",
"nikic/php-parser" : "~4.0",
"mouf/mouf" : "~2.0",
"mouf/utils.common.doctrine-annotations-wrapper" : "~1.2",
"elasticsearch/elasticsearch" : "~1.1",
"mouf/mvc.splash" : "~5.0",
"koala-framework/composer-extra-assets": "~1.1",
"geoffroy-aubry/logger" : "1.*",
"michelf/php-markdown" : "~1.4",
"ezyang/htmlpurifier" : "~4.6",
"guzzlehttp/guzzle" : "^6",
"mouf/utils.common.lock" : "dev-master",
"mouf/modules.google-analytics" : "~4.0",
"mongodb/mongodb": "^1.0.0@beta"
},
"require-dev": {
"phpunit/phpunit" : "^4",
"bamarni/composer-bin-plugin": "^1.2"
},
"autoload" : {
"psr-4" : {
"Mouf\\Packanalyst\\" : "src/Mouf/Packanalyst"
}
},
"minimum-stability" : "dev",
"prefer-stable": true,
"scripts": {
"phpstan": "phpstan analyse src -c phpstan.neon --level=2 --no-progress -vvv",
"post-install-cmd": ["@composer bin all install --ansi"],
"post-update-cmd": ["@composer bin all update --ansi"]
},
"extra" : {
"require-bower": {
"jquery": "~1.11",
"typeahead.js": "0.10.*"
}
}
}