forked from hasegawa-tomoki/php-terminal-nes-emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 865 Bytes
/
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
{
"name": "hasegawa-tomoki/php-terminal-nes-emulator",
"description": "A PHP terminal NES emulator",
"keywords": ["php", "terminal", "console", "nes", "emulator"],
"homepage": "http://github.com/hasegawa-tomoki/php-terminal-nes-emulator",
"license": "MIT",
"authors": [
{
"name": "HASEGAWA Tomoki",
"email": "hasegawa.tomoki@gmail.com"
}
],
"require": {
"php": ">=7.0",
"pear/console_commandline": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0"
},
"autoload": {
"psr-4": {
"Nes\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nes\\Test\\": "tests"
}
},
"scripts": {
"cs-check": "phpcs --colors -p --standard=PSR2 ./src ./tests",
"cs-fix": "phpcbf --colors --standard=PSR2 ./src ./tests",
"test": "phpunit --colors=always"
},
"prefer-stable": true
}