-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.06 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"autoload-dev": {
"psr-4": {
"OC\\": "dev-environment/nextcloud_source/lib/",
"OCP\\": "dev-environment/nextcloud_source/lib/public/",
"OCA\\Files_External\\": "dev-environment/nextcloud_source/apps/files_external/lib/",
"OCA\\Files_External_Ethswarm\\": "lib/"
}
},
"require": {
"ext-curl": "*",
"ext-simplexml": "*"
},
"require-dev": {
"nextcloud/coding-standard": "^1.4",
"ext-fileinfo": "*",
"friendsofphp/php-cs-fixer": "*",
"bamarni/composer-bin-plugin": "^1.8",
"vimeo/psalm": "*"
},
"scripts": {
"cs:check": "./vendor/php-cs-fixer/shim/php-cs-fixer.phar fix --dry-run --diff",
"cs:fix": "./vendor/php-cs-fixer/shim/php-cs-fixer.phar fix",
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || composer bin all install --ansi"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || composer bin all update --ansi"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
}
}