-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.25 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
{
"name": "concrete5/composer",
"description": "A fully featured skeleton for a composer managed concrete5 site",
"type": "project",
"license": "MIT",
"prefer-stable": true,
"autoload": {
"psr-4": {
"ConcreteComposer\\" : "./src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"ConcreteComposer\\" : "./tests"
}
},
"require": {
"composer/installers": "^1.3",
"concrete5/core": "^9.0.1",
"concrete5/dependency-patches": "^1.4.0",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "~4.3|^8.0",
"mockery/mockery": "^0.9.9|^1.2"
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"mlocati/composer-patcher": true
}
},
"extra": {
"allow-subpatches": [
"concrete5/dependency-patches"
],
"branch-alias": {
"dev-8.x": "8.x-dev"
},
"installer-paths": {
"public/concrete": ["type:concrete5-core"],
"public/application/themes/{$name}": ["type:concrete5-theme"],
"public/packages/{$name}": ["type:concrete5-package"],
"public/application/blocks/{$name}": ["type:concrete5-block"]
}
},
"scripts": {
"test": "phpunit"
}
}