-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
executable file
·48 lines (48 loc) · 1.18 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
40
41
42
43
44
45
46
47
48
{
"name": "khill/fontawesomephp",
"description": "PHP wrapper library for the fantastic Font Awesome icon set.",
"license": "MIT",
"authors": [
{
"name": "Kevin Hill",
"email": "[email protected]",
"role": "Developer"
}
],
"config": {
"platform": {
"php": "5.3.29"
}
},
"autoload": {
"psr-4": {
"Khill\\FontAwesome\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"squizlabs/php_codesniffer": "~2.5",
"satooshi/php-coveralls": "~1.0"
},
"autoload-dev": {
"psr-4": {
"Khill\\FontAwesome\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit -c phpunit.xml",
"cs": "phpcs --standard=PSR2 src tests",
"cbf" : "phpcbf --standard=PSR2 src tests"
},
"extra": {
"laravel": {
"providers": [
"Khill\\FontAwesome\\Laravel\\FontAwesomeServiceProvider"
],
"aliases": {
"FA": "Khill\\FontAwesome\\Laravel\\FontAwesomeFacade"
}
}
},
"minimum-stability": "stable"
}