-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.6 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
{
"name": "jkphl/responsive-images-css",
"description": "HTML5-like responsive background images in CSS (sort of …)",
"homepage": "https://github.com/jkphl/responsive-images-css",
"minimum-stability": "RC",
"license": "MIT",
"authors": [
{
"name": "Joschi Kuphal",
"email": "[email protected]",
"homepage": "https://jkphl.is",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/jkphl/responsive-images-css",
"issues": "https://github.com/jkphl/responsive-images-css/issues"
},
"config": {
"sort-packages": true
},
"repositories": {
"graph-composer": {
"type": "git",
"url": "https://github.com/jkphl/graph-composer"
}
},
"require": {
"php": ">=7.1",
"chriskonnertz/string-calc": "^1.0.10",
"sabberworm/php-css-parser": "^8.1"
},
"autoload": {
"psr-4": {
"Jkphl\\": "src/"
}
},
"scripts": {
"phpunit": "phpunit --configuration phpunit.xml.dist",
"depgraph": "graph-composer --no-dev export . doc/dependencies.svg",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"test": "@phpunit",
"build": "php dev/build.php"
},
"require-dev": {
"clue/graph-composer": "dev-master",
"codeclimate/php-test-reporter": "^0.4.4",
"phpunit/phpunit": "^7.0",
"satooshi/php-coveralls": "^1.0",
"squizlabs/php_codesniffer": "^3.2"
}
}