-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
37 lines (37 loc) · 944 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
37
{
"name": "ajgl/composer-symlinker",
"description": "Composer script to symlink assets.",
"keywords": ["composer", "assets", "composer"],
"type": "composer-plugin",
"homepage": "https://github.com/ajgarlag/AjglComposerSymlinker",
"license": "MIT",
"authors": [
{
"name": "Antonio J. García Lagar",
"email": "[email protected]",
"homepage": "http://aj.garcialagar.es",
"role": "developer"
}
],
"require": {
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"friendsofphp/php-cs-fixer": "^2"
},
"autoload": {
"psr-4": {
"Ajgl\\Composer\\": "src/"
}
},
"scripts": {
"fix-cs": "vendor/bin/php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
},
"class": "Ajgl\\Composer\\Plugin"
}
}