Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 08ed433

Browse files
committed
add composer.json
1 parent 006d143 commit 08ed433

File tree

6 files changed

+18
-1
lines changed

6 files changed

+18
-1
lines changed

.gitignore

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

composer.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "welltime/phpagi",
3+
"description": "PHPAGI is a PHP class for the Asterisk Gateway Interface.",
4+
"type": "library",
5+
"license": "LGPL-2.1-or-later",
6+
"autoload": {
7+
"classmap": [
8+
"src/phpagi.php",
9+
"src/phpagi-asmanager.php"
10+
]
11+
},
12+
"require": {}
13+
}

mkdocs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env php
22
<?php
33
$cwd = getcwd();
4-
passthru("phpdoc -t \"$cwd/api-docs\" -f \"$cwd/phpagi.php,$cwd/phpagi-asmanager.php,$cwd/phpagi-fastagi.php\" -pp on -ti \"phpAGI\" -o HTML:frames:earthli -s on");
4+
passthru("phpdoc -t \"$cwd/api-docs\" -f \"$cwd/src/phpagi.php,$cwd/src/phpagi-asmanager.php,$cwd/src/phpagi-fastagi.php\" -pp on -ti \"phpAGI\" -o HTML:frames:earthli -s on");
55
?>
66

77

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)