-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathcomposer.json
76 lines (76 loc) · 2.44 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "afup/web",
"description": "Main repository for afup website",
"type": "project",
"require": {
"league/oauth2-github": "^0.2.1",
"symfony/symfony": "^3.1",
"symfony/monolog-bundle": "^2.11",
"sensio/distribution-bundle": "^5.0",
"ccmbenchmark/ting_bundle": "^3.0",
"knpuniversity/oauth2-client-bundle": "^1.4",
"twig/extensions": "^1.4",
"jms/serializer-bundle": "^1.1",
"algolia/algoliasearch-client-php": "^1.12",
"cocur/slugify": "^2.3",
"j7mbo/twitter-api-php": "^1.0",
"nojimage/twitter-text-php": "^1.1",
"pacely/mailchimp-apiv3": "^1.0",
"cdaguerre/php-trello-api": "^0.9.3",
"willdurand/geocoder": "^3.3",
"smarty/smarty": "2.6.25",
"sabre/vobject": "^4.1",
"dms/meetup-api-client": "^2.3"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "htdocs",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"symfony-cache-warmup": true
},
"autoload": {
"psr-4": {
"Afup\\Site\\": "sources/Afup/",
"AppBundle\\": "sources/AppBundle/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"license": "MIT",
"authors": [
{
"name": "Afup",
"email": "outils@afup.org"
}
],
"minimum-stability": "stable",
"require-dev": {
"atoum/atoum": "^2.8",
"atoum/stubs": "^2.5",
"friendsofphp/php-cs-fixer": "~1.12"
}
}