forked from userfrosting/UserFrosting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·60 lines (60 loc) · 1.56 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
{
"name": "userfrosting/userfrosting",
"type": "project",
"description": "A secure, modern user management system for PHP.",
"keywords": ["php user management", "usercake", "bootstrap"],
"homepage": "https://github.com/userfrosting/UserFrosting",
"license" : "MIT",
"authors" : [
{
"name": "Alexander Weissman",
"homepage": "https://alexanderweissman.com"
}
],
"config": {
"vendor-dir": "app/vendor"
},
"require": {
"php": ">=5.6",
"ext-gd": "*",
"composer/installers": "^1.4.0",
"symfony/console": "^3.3",
"wikimedia/composer-merge-plugin": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "1.0.0-alpha1",
"league/factory-muffin": "^3.0",
"league/factory-muffin-faker": "^2.0"
},
"extra": {
"merge-plugin": {
"include": [
"app/sprinkles.json",
"app/sprinkles/*/composer.json"
],
"recurse": true,
"replace": false,
"merge-dev": true,
"merge-extra": false
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files" : [
"app/defines.php"
],
"psr-4": {
"UserFrosting\\System\\": "app/system/"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Tests\\": "app/tests/"
}
},
"scripts": {
"test" : "phpunit --colors=always"
}
}