-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 941 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 941 Bytes
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
{
"name": "mitlibraries/mitlibraries-theme-omeka",
"description": "An Omeka S theme to implement the MIT Libraries' branding materials",
"type": "omeka-theme",
"authors": [
{
"name": "MIT Libraries"
}
],
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
},
"sort-packages": true
},
"scripts": {
"syntax": [
"find . -path ./vendor -prune -o \\( -name '*.php' \\) -exec php -d error_reporting=E_ALL -lf {} \\;",
"find . -path ./vendor -prune -o \\( -name '*.phtml' \\) -exec php -d error_reporting=E_ALL -lf {} \\;"
],
"lint": [
"phpcs"
]
},
"require": {
"composer/installers": "^2.2"
}
}