-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.09 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
{
"name": "maadhattah/readsync",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"description": "ReadSync backs up your reading list from Pocket, using PressForward's import.",
"homepage": "https://github.com/mAAdhaTTah/readsync",
"authors": [
{
"name": "James DiGioia",
"email": "[email protected]",
"homepage": "http://jamesdigioia.com/"
}
],
"require": {
"php": ">=5.3.0",
"intraxia/jaxion": "dev-master",
"wpupdatephp/wp-update-php": "~1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.3",
"intraxia/codestyle": "dev-master",
"websharks/wp-i18n-tools": "dev-master",
"phpunit/phpunit": "4.3.*",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-4": {
"Intraxia\\Readsync\\": "app/"
}
},
"config": {
"vendor-dir": "lib"
},
"scripts": {
"sniff": "phpcs -s --runtime-set installed_paths lib/wp-coding-standards/wpcs -p app/ --standard=lib/intraxia/codestyle/ruleset.xml --report=full",
"genpot": "lib/websharks/wp-i18n-tools/makepot.php wp-plugin app/ $(pwd)/languages/readsync.pot"
}
}