-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
39 lines (39 loc) · 1.07 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
{
"name": "letudiant/composer-shared-package-plugin",
"description": "This composer plugin allows you to share selected packages between your projects with symlinks.",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Sylvain Lorinet",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/letudiant/composer-shared-package-plugin/issues"
},
"require": {
"php": ">=5.3.2",
"composer-plugin-api": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"composer/composer": "dev-master",
"codeclimate/php-test-reporter": "dev-master",
"symfony/var-dumper": "~2.7"
},
"autoload": {
"psr-0": {
"LEtudiant\\Composer\\": "src/"
}
},
"autoload-dev": {
"Test\\Unit\\LEtudiant\\Composer\\": "tests/unit"
},
"extra": {
"class": "LEtudiant\\Composer\\SharedPackagePlugin",
"branch-alias": {
"dev-master": "3.1-dev"
}
}
}