forked from phpfunct/funct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 841 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
{
"name": "funct/funct",
"description": "A PHP library with commonly used code blocks",
"authors": [
{
"name": "Aurimas Niekis",
"email": "[email protected]"
}
],
"type": "library",
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "^4.0"
},
"autoload": {
"psr-4": {
"Funct\\": "src"
},
"files": [
"src/Collection.php",
"src/General.php",
"src/Invoke.php",
"src/Object.php",
"src/Strings.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit -c phpunit.xml.ci"
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}