-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.06 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
{
"name": "grow-bit-tech/php-thoughts",
"description": "PHP Framework for Large Projects.",
"type": "library",
"keywords": [
"framework",
"php framework"
],
"license": "MIT",
"support": {
"issues": "https://github.com/GrowBit-Tech/PhpThoughts/issues",
"source": "https://github.com/GrowBit-Tech/PhpThoughts"
},
"authors": [
{
"name": "Muhammad Rizwan",
"email": "[email protected]"
}
],
"require": {
"wikimedia/composer-merge-plugin": "*@dev"
},
"autoload": {
"psr-4": {
"App\\": "Modules"
}
},
"config": {
"process-timeout": 0,
"optimize-autoloader": true,
"allow-plugins": {
"wikimedia/composer-merge-plugin": true
}
},
"extra": {
"merge-plugin": {
"include": [
"Framework/composer.json"
],
"recurse": true,
"replace": false,
"ignore-duplicates": true,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}