forked from dink/ching-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
103 lines (103 loc) · 3.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
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
{
"name": "hughgrigg/ching-shop",
"description": "Ching Shop",
"license": "proprietary",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.0",
"ext-imagick": "^3.4",
"ext-redis": "*",
"laravel/framework": "5.4.*",
"graham-campbell/htmlmin": "^4.1",
"doctrine/dbal": "^2.5",
"predis/predis": "^1.0",
"fideloper/proxy": "^3.1",
"satooshi/php-coveralls": "^1.0.1",
"aws/aws-sdk-php": "~3.0",
"pmatseykanets/artisan-beans": "^0.1.4",
"league/flysystem-aws-s3-v3": "^1.0",
"mccool/laravel-auto-presenter": "^5.0",
"laracasts/flash": "^2.0",
"guzzlehttp/guzzle": "^6.2",
"rap2hpoutre/laravel-log-viewer": "^0.7.0",
"paypal/rest-api-sdk-php": "^1.7",
"propaganistas/laravel-fakeid": "^2",
"spatie/laravel-backup": "^4.0",
"thepixeldeveloper/sitemap": "^4.4",
"laravel/scout": "^3.0",
"elasticsearch/elasticsearch": "^5.0",
"baum/baum": "^1.1",
"league/uri": "^4.2",
"ipunkt/laravel-analytics": "dev-content-security-policy",
"laravel-notification-channels/telegram": "^0.0.1",
"irazasyed/telegram-bot-sdk": "^2.0",
"stripe/stripe-php": "^4.1",
"moneyphp/money": "^3.0",
"roave/security-advisories": "dev-master",
"tamayo/laravel-scout-elastic": "^3.0"
},
"require-dev": {
"fzaninotto/faker": "^1.4",
"phpunit/phpunit": "~5.7",
"laravel/homestead": "^3.0.1",
"symfony/dom-crawler": "^3.0",
"symfony/css-selector": "^3.0",
"mockery/mockery": ">=0.9.4",
"hamcrest/hamcrest-php": "^2.0.0",
"pda/pheanstalk": "^3.0",
"squizlabs/php_codesniffer": "^2.5",
"phpmd/phpmd": "@stable",
"barryvdh/laravel-ide-helper": "^2.2",
"barryvdh/laravel-debugbar": "~2.3",
"laravel/tinker": "^1.0",
"laravel/browser-kit-testing": "^1.0"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"ChingShop\\": "app/",
"Testing\\": "tests/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/BrowserKitTestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan optimize"
],
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/laravel/homestead"
},
{
"type": "git",
"url": "https://github.com/hughgrigg/laravel-analytics"
}
]
}