-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
56 lines (56 loc) · 1.68 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
{
"name" : "joindin/callingallpapers-api",
"description" : "The API powering callingallpapers.com",
"license": "MIT",
"require": {
"akrabat/ip-address-middleware": "^2.0",
"guzzlehttp/guzzle": "^6.2",
"mattketmo/camel": "^1.1",
"monolog/monolog": "^1.17",
"org_heigl/clacks-middleware": "^1.1",
"org_heigl/pdo_timezone_helper": "dev-master",
"org_heigl/slim-json-helpers": "^1.1.0",
"php" : "^7.2 | ^8.0",
"sabre/vobject": "^4.0",
"slim/slim": "^3.0",
"slim/twig-view": "^2.0",
"theiconic/php-ga-measurement-protocol": "^2.1",
"laminas/laminas-feed": "^2.7"
},
"autoload" : {
"psr-4": {
"Callingallpapers\\Api\\": "src/"
}
},
"autoload-dev":{
"psr-4" : {
"CallingallpapersTest\\Api\\" : "tests/"
}
},
"require-dev": {
"mockery/mockery": "^0.9.7",
"phing/phing": "^2.14",
"phpunit/phpunit": "^7.0 | ^9.0"
},
"scripts" : {
"cs-download" : [
"curl -o phpcs -L https://api.getlatestassets.com/github/squizlabs/PHP_CodeSniffer/phpcs.phar",
"chmod 755 phpcs"
],
"cs-check" : [
"composer cs-download",
"./phpcs"
],
"test" : [
"./vendor/bin/phpunit -c phpunit.travis.xml --coverage-clover build/logs/clover.xml"
],
"sendcoverage" : [
"curl -o coveralls -L https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar",
"chmod 755 coveralls",
"coveralls"
]
},
"config" : {
"sort-packages" : true
}
}