-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
84 lines (84 loc) · 2.53 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "cybercog/laravel-youtrack-sdk",
"description": "Laravel wrapper for PHP YouTrack SDK.",
"type": "library",
"license": "MIT",
"keywords": [
"cybercog",
"cog",
"laravel",
"youtrack",
"yt",
"sdk",
"rest",
"api",
"client",
"jetbrains",
"issues",
"bugtracker",
"helpdesk",
"pm",
"tickets"
],
"authors": [
{
"name": "Anton Komarev",
"email": "[email protected]",
"homepage": "http://ell.folio.su",
"role": "Developer"
}
],
"homepage": "https://github.com/cybercog/laravel-youtrack-sdk",
"support": {
"email": "[email protected]",
"issues": "https://github.com/cybercog/laravel-youtrack-sdk/issues",
"wiki": "https://github.com/cybercog/youtrack-php-sdk/wiki",
"source": "https://github.com/cybercog/laravel-youtrack-sdk",
"docs": "https://github.com/cybercog/youtrack-php-sdk/wiki"
},
"require": {
"php": "^7.1",
"cybercog/youtrack-php-sdk": "^4.0",
"illuminate/support": "~5.4|~5.5|~5.6|~5.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.10",
"phpunit/phpunit": "^5.7|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Cog\\Laravel\\YouTrack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cog\\Tests\\Laravel\\YouTrack\\": "tests/"
}
},
"scripts": {
"test-install": [
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.4",
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.5",
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.6",
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.7"
],
"test": [
"./vendor/bin/phpunit --configuration tests/framework/5.4",
"./vendor/bin/phpunit --configuration tests/framework/5.5",
"./vendor/bin/phpunit --configuration tests/framework/5.6",
"./vendor/bin/phpunit --configuration tests/framework/5.7"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Cog\\Laravel\\YouTrack\\Providers\\YouTrackServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable" : true
}