-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "accessifywiki/accessifywiki-api",
"description": "Todo ...",
"type": "project",
"minimum-stability": "beta",
"keywords": [ "accessibility", "wiki", "fix" ],
"homepage": "http://accessifywiki.org",
"time": "2016-02-11",
"license": "proprietary",
"require": {
"php": ">=5.4.0",
"vlucas/phpdotenv": "^2.2",
"slim/slim": "^3.0",
"guzzlehttp/guzzle": "^6.1",
"kzykhys/yaml-front-matter": "^1.0",
"symfony/yaml": "^2.8"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5",
"jakub-onderka/php-parallel-lint": "^0.9.2"
},
"suggest": {
"slim/slim::3": "^3.0; Requires PHP >=5.5 :(",
"silex/silex": "^1.3",
"devster/frontmatter": "^1.0@dev"
},
"autoload": {
"psr-4": {
"AccessifyWiki\\Api\\": "src/"
}
},
"scripts": {
"test": [
"# composer validate --no-interaction",
"cd test/ && node validate-app-yaml.js",
"parallel-lint src/*",
"parallel-lint index.php",
"phpcs --standard=PSR2 -n --encoding=utf-8 --extensions=php src/*",
"phpcs --standard=PSR2 -n --encoding=utf-8 --extensions=php test/*",
"phpcs --standard=PSR2 -n --encoding=utf-8 --extensions=php index.php"
],
"test-gae": "/usr/local/bin/appcfg.py $*",
"install-npm": "cd test/ && npm install",
"test-yaml": "cd test/ && node validate-app-yaml.js",
"test-yaml-0": "php test/validate-app-yaml.php",
"serve": [
"# Serving http://localhost:8080 ...",
"/usr/local/bin/dev_appserver.py ."
],
"serve-php": "php -S localhost:8080",
"deploy": "/usr/local/bin/appcfg.py update .",
"ps": "ps -af | grep python",
"kill": [
"# pkill -fx '.*_php_runtime.py' #( killall python )",
"pkill -fx '.*_php_runtime.py'"
]
},
"extra": {
"//": [
"/Applications/MAMP/bin/php/php5.5.3/bin/php ../../composer.phar require guzzlehttp/guzzle \"^6.1\"",
" 503 78002 1 0 Tue12pm ttys000 0:08.97 /usr/bin/python /usr/local/bin/_php_runtime.py",
"http://unix.stackexchange.com/questions/50555/kill-many-instances-of-a-running-process-with-one-command"
]
}
}