-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 912 Bytes
/
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
{
"name": "smnandre/easing-functions",
"description": "Easing & Timing Functions - Cubic-Bezier, EaseIn, Quad ...",
"license": "MIT",
"type": "library",
"keywords": [
"easing",
"timing",
"functions",
"cubic-bezier",
"linear",
"ease-in",
"ease-out",
"ease-in-out",
"transition",
"animation",
"interpolation"
],
"authors": [
{
"name": "Simon André",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3"
},
"require-dev": {
"php-cs-fixer/shim": "^3.59",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.2"
},
"autoload": {
"psr-4": {
"Easing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Easing\\Tests\\": "tests/"
}
}
}