-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
35 lines (35 loc) · 1.23 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
{
"name": "kporras07/composer-symlinks",
"description": "Composer script handling symlinks",
"keywords": ["composer", "script", "symlink"],
"homepage": "https://github.com/kporras07/composer-symlinks",
"license": "MIT",
"authors": [
{"name": "Kevin Porras", "email": "[email protected]"}
],
"require": {
"symfony/filesystem": "^2.5 || ^3.0 || ^4.0 || ^6.0 || ^7.0"
},
"require-dev": {
"composer/composer": "^1.0",
"phpunit/phpunit": "^5.5",
"vanio/coding-standards": "^0.1@dev"
},
"autoload": {
"psr-4": {"Kporras07\\ComposerSymlinks\\": "src/"},
"exclude-from-classmap": ["/tests/"]
},
"autoload-dev": {
"psr-4": { "Kporras07\\ComposerSymlinks\\Tests\\": "tests/" }
},
"scripts": {
"test": "\"vendor/bin/phpunit\"",
"lint": "\"vendor/bin/phpcs\" --standard=vendor/vanio/coding-standards/ruleset.xml --extensions=php --encoding=utf-8 --ignore=vendor .",
"fix": "\"vendor/bin/phpcbf\" --standard=vendor/vanio/coding-standards/ruleset.xml --extensions=php --encoding=utf-8 --no-patch --ignore=vendor ."
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}