-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.24 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
{
"name": "jcchikikomori/hello-php",
"type": "project",
"description": "Pure PHP Starter Pack for prototyping/testing",
"keywords": ["OOP", "PHP", "application"],
"license": "MIT",
"authors": [
{
"name": "John Cyrill Corsanes",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.5",
"phpmailer/phpmailer": ">=6.1.6",
"gregwar/captcha": "1.*",
"league/oauth2-client": "^2.2",
"catfan/medoo": ">=1.2",
"jenssegers/agent": "^2.5",
"robmorgan/phinx": "^0.12.4",
"squizlabs/php_codesniffer": "*",
"vlucas/phpdotenv": "^5.2",
"perchten/neat_html": "^1.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"odan/phinx-migrations-generator": "^5.1"
},
"scripts": {
"post-autoload-dump": [
"php -r \"file_exists('configs/system.php') || copy('configs/system.php.example', 'configs/system.php');\"",
"php -r \"file_exists('configs/database.php') || copy('configs/database.php.example', 'configs/database.php');\"",
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}