-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (67 loc) · 1.62 KB
/
composer.json
File metadata and controls
68 lines (67 loc) · 1.62 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "awcode/aw-crm",
"description": "AwCRM",
"keywords": ["awcode", "awcore", "aw-core", "awcrm", "aw-crm"],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "5.0.*",
"doctrine/dbal": "~2.3",
"illuminate/html": "5.*",
"caffeinated/modules": "~1.0",
"wikimedia/composer-merge-plugin": "~1.0",
"mnsami/composer-custom-directory-installer": "1.0.*",
"awcode/aw-core-module-customers": ">=0.0.5",
"awcode/aw-core-module-orders": ">=0.0.9",
"awcode/aw-core-module-events": ">=0.0.3",
"awcode/aw-core-module-products": ">=0.0.3",
"awcode/aw-core-module-suppliers": ">=0.0.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1"
},
"autoload": {
"classmap": [
"database",
"app/Http/Controllers",
"app/Models"
],
"psr-4": {
"AwCore\\": "app/",
"Repositories\\": "app/Repositories"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"extra": {
"merge-plugin": {
"include": [
"app/Modules/*/composer.json"
]
},
"installer-paths": {
"app/Modules/{$name}/": ["awcode/aw-core-module-orders", "awcode/aw-core-module-customers", "awcode/aw-core-module-events", "awcode/aw-core-module-products", "awcode/aw-core-module-suppliers"]
}
}
}