-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (64 loc) · 2.18 KB
/
composer.json
File metadata and controls
75 lines (64 loc) · 2.18 KB
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
{
"name": "wzrd/framework",
"description": "The WZRD Framework package.",
"keywords": [
"wzrd",
"framework"
],
"homepage": "https://github.com/WZRDFRMK/framework",
"license": "CeCILL-B",
"authors": [
{
"name": "Kévin DUBUC",
"email": "kevindubuc62@gmail.com",
"homepage": "http://kevindubuc.fr",
"role": "Developer"
}
],
"require": {
"php" : "^5.6|^7.0",
"wzrd/contracts": "dev-master",
"pagerfanta/pagerfanta": "^1.0"
},
"require-dev": {
"phpunit/phpunit" : "^5.2",
"scrutinizer/ocular": "^1.1",
"squizlabs/php_codesniffer": "^2.3",
"mockery/mockery": "^0.9",
"fabpot/php-cs-fixer": "^1.5",
"league/fractal": "^0.11",
"firebase/php-jwt": "^1.0",
"swiftmailer/swiftmailer": "^4.2",
"zendframework/zendservice-google-gcm": "^1.0",
"zendframework/zendservice-apple-apns": "^1.0",
"league/statsd": "^1.1",
"parse/php-sdk": "^1.0",
"league/tactician": "^1.0"
},
"suggest": {
"league/fractal": "To use FractalTransformer.",
"firebase/php-jwt": "To use JWTEncrypter.",
"swiftmailer/swiftmailer": "To use SwiftMailer.",
"zendframework/zendservice-google-gcm": "To use ZendGcmPusher.",
"zendframework/zendservice-apple-apns": "To use ZendApnsPusher.",
"league/statsd": "To use StatsdProfiler.",
"parse/php-sdk": "To use ParsePusher.",
"league/tactician": "To use TacticianBus."
},
"autoload": {
"psr-4": {
"WZRD\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WZRD\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"fix-cs": "composer fix-cs-src & composer fix-cs-tests",
"fix-cs-src": "php vendor/bin/php-cs-fixer fix src --level=symfony --fixers=align_double_arrow,align_equals,ordered_use,phpdoc_order,short_array_syntax",
"fix-cs-tests": "php vendor/bin/php-cs-fixer fix tests --level=symfony --fixers=align_double_arrow,align_equals,ordered_use,phpdoc_order,short_array_syntax"
}
}