-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.58 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
{
"name": "felixarntz/fast-smooth-scroll",
"description": "This lightweight plugin enhances user experience by enabling smooth scrolling for anchor links without the need for jQuery or other dependencies.",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"plugin",
"smooth scroll",
"scroll animation",
"performance",
"anchor links",
"lightweight"
],
"homepage": "https://wordpress.org/plugins/fast-smooth-scroll/",
"authors": [
{
"name": "Felix Arntz",
"email": "hello@felix-arntz.me",
"homepage": "https://felix-arntz.me",
"role": "Developer"
}
],
"support": {
"email": "hello@felix-arntz.me",
"issues": "https://github.com/felixarntz/fast-smooth-scroll/issues"
},
"require": {
"composer/installers": "~1.0",
"php": ">=5.2"
},
"require-dev": {
"wp-phpunit/wp-phpunit": "^5.0 || ^6.0",
"yoast/phpunit-polyfills": "^1.0"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
},
"scripts": {
"format": [
"composer --working-dir=build-cs install",
"build-cs/vendor/bin/phpcbf --standard=phpcs.xml.dist"
],
"lint": [
"composer --working-dir=build-cs install",
"build-cs/vendor/bin/phpcs --standard=phpcs.xml.dist"
],
"phpstan": [
"composer --working-dir=build-cs install",
"build-cs/vendor/bin/phpstan analyse --memory-limit=2048M"
],
"test": "phpunit -c phpunit.xml.dist --verbose",
"test-multisite": "WP_MULTISITE=1 phpunit -c tests/phpunit/multisite.xml --verbose"
}
}