This repository was archived by the owner on Feb 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.33 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.33 KB
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
{
"name": "mmoreram/php-formatter",
"type": "library",
"description": "PHP custom formatter",
"keywords": [
"php", "formatter"
],
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "yuhu@mmoreram.com"
}
],
"require": {
"php": ">=7.0",
"symfony/console": "^3.2||^4.0",
"symfony/process": "^3.2||^4.0",
"symfony/finder": "^3.2||^4.0",
"symfony/filesystem": "^3.2||^4.0",
"symfony/yaml": "^3.2||^4.0",
"symfony/event-dispatcher": "^3.2||^4.0",
"symfony/property-access": "^3.2||^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.8.3",
"phpunit/phpunit": "^5.6.4"
},
"bin": [
"bin/php-formatter"
],
"autoload": {
"psr-4": {"Mmoreram\\PHPFormatter\\": "src/PHPFormatter"}
},
"autoload-dev": {
"psr-4": {"Mmoreram\\PHPFormatter\\Tests\\": "tests/PHPFormatter"}
},
"scripts": {
"fix-code": [
"vendor/bin/php-cs-fixer fix --config-file=.php_cs",
"bin/php-formatter f:h:f . --exclude=vendor --verbose",
"bin/php-formatter f:s:f . --exclude=vendor --verbose",
"bin/php-formatter f:u:s . --exclude=vendor --verbose"
],
"test": "vendor/bin/phpunit"
}
}