-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·104 lines (104 loc) · 2.66 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "pluma/cms",
"description": "Pluma - A Web CMS",
"version": "2.0.1",
"homepage": "https://github.com/lioneil/pluma",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "John Lioneil Dionisio",
"email": "john.dionisio1@gmail.com"
},
{
"name": "Princess Ellen Alto",
"email": "princessalto@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.1.3",
"asm89/stack-cors": "^1.2",
"chumper/zipper": "^1.0",
"doctrine/inflector": "~1.0",
"dompdf/dompdf": "^0.8.2",
"illuminate/auth": "5.6.*",
"illuminate/bus": "5.6.*",
"illuminate/cache": "5.6.*",
"illuminate/config": "5.6.*",
"illuminate/console": "5.6.*",
"illuminate/container": "5.6.*",
"illuminate/contracts": "5.6.*",
"illuminate/cookie": "5.6.*",
"illuminate/database": "5.6.*",
"illuminate/encryption": "5.6.*",
"illuminate/events": "5.6.*",
"illuminate/filesystem": "5.6.*",
"illuminate/hashing": "5.6.*",
"illuminate/log": "5.6.*",
"illuminate/mail": "5.6.*",
"illuminate/notifications": "5.6.*",
"illuminate/pagination": "5.6.*",
"illuminate/queue": "5.6.*",
"illuminate/redis": "5.6.*",
"illuminate/routing": "5.6.*",
"illuminate/support": "5.6.*",
"illuminate/validation": "5.6.*",
"illuminate/view": "5.6.*",
"mtdowling/cron-expression": "^1.2",
"nesbot/carbon": "^1.22",
"predis/predis": "^1.1",
"robmorgan/phinx": "^0.9.2",
"swiftmailer/swiftmailer": "^6.0",
"symfony/console": "^4.0",
"symfony/polyfill-mbstring": "^1.7",
"symfony/var-dumper": "^3.0",
"vlucas/phpdotenv": "^2.4",
"wikimedia/composer-merge-plugin": "^1.4"
},
"require-dev": {
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"classmap": [
"core",
"modules",
"blacksmith"
],
"psr-4": {
"Pluma\\": "core/"
}
},
"extra": {
"merge-plugin": {
"include": [
"composer.local.json",
"core/submodules/*/composer.json",
"modules/*/composer.json"
],
"recurse": true,
"replace": false,
"ignore-duplicates": true,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php pluma key:generate"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}