forked from mAAdhaTTah/wordpress-github-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.73 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
{
"name": "maadhattah/wordpress-github-sync",
"description": "A WordPress plugin to sync content with a GitHub repository (or Jekyll site)",
"type": "wordpress-plugin",
"minimum-stability": "stable",
"license": "GPL",
"authors": [
{
"name": "Ben Balter",
"email": "[email protected]"
},
{
"name": "James DiGioia",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mAAdhaTTah/cyps"
}
],
"autoload": {
"classmap": ["lib/"],
"files": ["helpers.php"]
},
"autoload-dev": {
"classmap": ["tests/"]
},
"require": {
"php": ">=5.2",
"mAAdhaTTah/cyps": "1.0.0",
"xrstf/composer-php52": "~1.0"
},
"require-dev": {
"jdgrimes/wp-http-testcase": "1.2.1",
"mockery/mockery": "0.9.3",
"phpunit/phpunit": "^4.8",
"websharks/wp-i18n-tools": "dev-master",
"wp-coding-standards/wpcs": "0.7.1",
"squizlabs/php_codesniffer": "~2.3"
},
"scripts": {
"sniff": "phpcs --runtime-set installed_paths vendor/wp-coding-standards/wpcs -p ./ --standard=WordPress --report=full --extensions=php --ignore=*/tests/*,*/vendor/*",
"clean": "phpcbf --runtime-set installed_paths vendor/wp-coding-standards/wpcs -p ./ --standard=WordPress --report=full --extensions=php --ignore=*/tests/*,*/vendor/*",
"test": "phpunit",
"genpot": "vendor/websharks/wp-i18n-tools/makepot.php wp-plugin . $(pwd)/languages/wordpress-github-sync.pot",
"post-install-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-update-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-autoload-dump": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
]
}
}