Skip to content

Commit fcd33ef

Browse files
committed
Merge pull request #2 from pear/topics/composer-for-pear
Updated/New Composer support for Net_Socket
2 parents dd3960e + f4433d9 commit fcd33ef

2 files changed

Lines changed: 45 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# composer related
2+
composer.lock
3+
composer.phar
4+
vendor

composer.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"authors": [
3+
{
4+
"email": "chuck@horde.org",
5+
"name": "Chuck Hagenbuch",
6+
"role": "Lead"
7+
},
8+
{
9+
"email": "stig@php.net",
10+
"name": "Stig Bakken",
11+
"role": "Lead"
12+
},
13+
{
14+
"email": "alec@php.net",
15+
"name": "Aleksander Machniak",
16+
"role": "Lead"
17+
}
18+
],
19+
"autoload": {
20+
"psr-0": {
21+
"Net": "./"
22+
}
23+
},
24+
"description": "More info available on: http://pear.php.net/package/Net_Socket",
25+
"include-path": [
26+
"./"
27+
],
28+
"license": "PHP License",
29+
"name": "pear/net_socket",
30+
"support": {
31+
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Net_Socket",
32+
"source": "https://github.com/pear/Net_Socket"
33+
},
34+
"type": "library",
35+
"require": {
36+
"pear/pear_exception": "*"
37+
},
38+
"require-dev": {
39+
"phpunit/phpunit": "*"
40+
}
41+
}

0 commit comments

Comments
 (0)