forked from jitamin/jitamin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 2.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
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
{
"name": "jitamin/jitamin",
"type": "project",
"description": "A web based project management system",
"license": "MIT",
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"discard-changes": true
},
"require" : {
"php" : ">=5.6.0",
"ext-gd" : "*",
"ext-mbstring" : "*",
"ext-hash" : "*",
"ext-openssl" : "*",
"ext-json" : "*",
"ext-ctype" : "*",
"ext-filter" : "*",
"ext-session" : "*",
"pimple/pimple" : "3.0.2",
"eluceo/ical": "0.10.1",
"erusev/parsedown" : "1.6.0",
"fguillot/json-rpc" : "1.2.1",
"fguillot/picodb" : "1.0.14",
"fguillot/picofeed": "0.1.24",
"fguillot/simpleLogger" : "1.0.1",
"fguillot/simple-validator" : "1.0.1",
"fguillot/simple-queue" : "1.0.1",
"nesbot/carbon": "~1.21",
"paragonie/random_compat": "2.0.11",
"christian-riesen/otp" : "1.4.3",
"swiftmailer/swiftmailer" : "5.4.5",
"symfony/console" : "~3.1",
"symfony/event-dispatcher" : "~3.1",
"gregwar/captcha": "1.1.1",
"robmorgan/phinx": "^0.6.5",
"vlucas/phpdotenv": "^2.4"
},
"require-dev" : {
"phpdocumentor/reflection-docblock": "2.0.4",
"block8/php-docblock-checker": "^1.0",
"squizlabs/php_codesniffer": "~2.5",
"symfony/yaml": "2.8.7",
"symfony/stopwatch" : "2.6.13",
"phpunit/phpunit" : "4.8.26",
"friendsofphp/php-cs-fixer": "^2.0"
},
"autoload" : {
"classmap" : ["app/"],
"psr-4" : {
"Jitamin\\" : "app/"
},
"files" : [
"app/helpers.php"
]
},
"scripts": {
"pre-install-cmd": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-install-cmd": [
],
"post-update-cmd": [
]
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
}
}