forked from nuvoleweb/simplemde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.79 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
{
"name": "drupal/simplemde",
"description": "Integrates with SimpleMDE Markdown Editor",
"type": "drupal-module",
"license": "GPL-2.0+",
"support": {
"issues": "https://drupal.org/project/issues/simplemde",
"source": "https://drupal.org/project/simplemde"
},
"keywords": [
"Drupal",
"SimpleMDE"
],
"repositories": [
{
"type": "package",
"package": {
"name": "NextStepWebs/simplemde-markdown-editor",
"version": "1.11.2",
"type": "drupal-library",
"dist": {
"url": "https://github.com/NextStepWebs/simplemde-markdown-editor/archive/1.11.2.zip",
"type": "zip"
}
}
}
],
"require": {
"NextStepWebs/simplemde-markdown-editor": "1.11.2"
},
"require-dev": {
"drupal/coder": "8.2.8",
"phpunit/phpunit": "5.5.*",
"bovigo/assert": "~1.7"
},
"scripts": {
"post-install-cmd": [
"vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
"vendor/bin/phpcs --config-set show_progress 1",
"cp scripts/pre-push.sh .git/hooks/pre-push && chmod +x .git/hooks/pre-push"
],
"post-update-cmd": [
"vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
"vendor/bin/phpcs --config-set show_progress 1",
"cp scripts/pre-push.sh .git/hooks/pre-push && chmod +x .git/hooks/pre-push"
],
"phpcs": "./vendor/bin/phpcs --standard=Drupal,DrupalPractice --extensions=php,module,install,inc,theme --ignore=vendor,libraries .",
"phpcbf": "./vendor/bin/phpcbf --standard=Drupal,DrupalPractice --extensions=php,module,install,inc,theme --ignore=vendor,libraries .",
"phpunit": "./vendor/bin/phpunit tests/scr/PhpUnit"
},
"autoload": {
"psr-4": {
"Drupal\\simplemde\\": "src/"
}
}
}