-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
35 lines (35 loc) · 853 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
{
"name": "adrianfalleiro/slim-cli-runner",
"type" : "library",
"license": "MIT",
"description": "Run command line tasks for Slim PHP",
"keywords": ["slim", "cli"],
"authors": [
{
"name": "Adrian Falleiro",
"email": "adrian@falleiro.com"
}
],
"require": {
"php": ">=7.1",
"slim/psr7": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"php-di/php-di": "^6.0||^7.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"adrianfalleiro\\SlimCliRunner\\": "src/"
}
},
"scripts": {
"test": [
"@phpcs"
],
"phpcs": "php vendor/bin/phpcs",
"phpcbf": "php vendor/bin/phpcbf"
}
}