Skip to content

Commit 4a05494

Browse files
committed
chore: composer
1 parent 61e6334 commit 4a05494

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

composer.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "adhocore/underscore",
3+
"description": "PHP underscore inspired &/or cloned from _.js",
4+
"type": "library",
5+
"keywords": ["php", "underscore", "collection"],
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Jitendra Adhikari",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"autoload": {
14+
"psr-4": {
15+
"Ahc\\Underscore\\": "src/"
16+
},
17+
"files": []
18+
},
19+
"autoload-dev": {
20+
"psr-4": {
21+
"Ahc\\Underscore\\Test\\": "tests/"
22+
}
23+
},
24+
"require": {
25+
"php": ">=5.4.0"
26+
},
27+
"require-dev": {
28+
"phpunit/phpunit": "^4.8.0|^5.7.0"
29+
},
30+
"config": {
31+
"optimize-autoloader": true,
32+
"preferred-install": {
33+
"*": "dist"
34+
}
35+
},
36+
"scripts": {
37+
"post-root-package-install": [
38+
],
39+
"test": "vendor/bin/phpunit"
40+
}
41+
}

0 commit comments

Comments
 (0)