-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.51 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.51 KB
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
{
"name": "zedx/core",
"description": "Complete and easily manageable Classifieds CMS",
"keywords": ["cms", "classifieds cms", "classified ads manager"],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Amine Oudjehih",
"email": "amine.oudjehih@gmail.com",
"homepage": "https://zedx.io",
"role": "Founder"
}
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.2.*",
"laravelcollective/html": "^5.2",
"sofa/eloquence": "^5.2",
"intervention/image": "^2.3",
"laravel/socialite": "^2.0",
"rutorika/sortable": "^3.1",
"soapbox/laravel-formatter": "^2.0",
"ignited/laravel-omnipay": "2.*",
"omnipay/paypal": "~2.0",
"zorx/zipper": "^0.6.2",
"zorx/baum": "1.1.*",
"unikent/tfilecache": "^1.0",
"barryvdh/laravel-async-queue": "0.4.x",
"doctrine/dbal": "^2.5"
},
"require-dev": {
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^4.8",
"symfony/css-selector": "2.8.*|3.0.*",
"symfony/dom-crawler": "2.8.*|3.0.*"
},
"autoload": {
"classmap": [
"database"
],
"files": [
"src/Support/helpers.php"
],
"psr-4": {
"ZEDx\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
}
}