-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
30 lines (30 loc) · 978 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
{
"name": "clentfort/laravel-find-js-localizations",
"description": "A tools that helps finding untranslated strings in JavaScript files in Laravel projects using rmariuzzo/Laravel-JS-Localization and andywer/laravel-js-localization",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Lentfort",
"email": "christian@lentfort.com"
}
],
"require": {
"illuminate/support": "^v5.1",
"illuminate/filesystem": "^v5.1",
"symfony/process": "^2.7.25"
},
"autoload": {
"psr-4": {
"clentfort\\LaravelFindJsLocalizations\\": "./"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1",
"phpunit/phpunit": "^5.7 || ^6.0"
},
"support": {
"issues": "https://github.com/clentfort/laravel-find-js-localizations/issues",
"source": "https://github.com/clentfort/laravel-find-js-localizations"
}
}