forked from justinhartman/complete-php7-ecom-website
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
36 lines (36 loc) · 1.1 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
{
"name": "justinhartman/php7_ecommerce_website",
"description": "An advanced and complete PHP 7 eCommerce website along with MySQL database and Admin interface.",
"homepage": "https://github.com/justinhartman/complete-php7-ecom-website",
"keywords": ["cms", "ecommerce", "ecommerce admin", "ecommerce database", "ecommerce website", "php"],
"authors": [{
"name": "Justin Hartman",
"email": "[email protected]",
"homepage": "https://justinhartman.co"
}],
"type": "project",
"license": "AGPL-3",
"require": {
"php": ">=7.0",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-curl": "*",
"ext-zip": "*",
"ext-json": "*",
"ext-exif": "*",
"ext-apcu": "*",
"ext-memcached": "*",
"ext-redis": "*",
"vlucas/phpdotenv": "^2.5"
},
"scripts": {
"post-install-cmd": [
"/bin/cp config/.env.prod config/.env",
"/bin/cp config/.htaccess.prod .htaccess"
]
},
"prefer-stable": true,
"config": {
"sort-packages": true
}
}