Skip to content

Commit 8e6327b

Browse files
authored
Merge pull request #5 from aspose-barcode/develop
Develop to master
2 parents 2f12111 + afe806f commit 8e6327b

File tree

202 files changed

+23151
-21881
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

202 files changed

+23151
-21881
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
/docs/ export-ignore
99
/composer_install.cmd export-ignore
1010
/composer_update.cmd export-ignore
11+
/composer_dump_autoload.cmd export-ignore
1112
/server.log export-ignore
1213
/TEMP* export-ignore
1314
/*.neon export-ignore

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
"apache/thrift": "^0.20.0",
1717
"ext-gd": "*"
1818
},
19-
"autoload": {
20-
"classmap": [
21-
"lib/"
22-
]
23-
},
19+
"autoload": {
20+
"psr-4": {
21+
"Aspose\\Barcode\\": "lib/"
22+
}
23+
},
2424
"minimum-stability": "stable",
2525
"prefer-stable": true
2626
}

composer_dump_autoload.cmd

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
@echo off
2+
setlocal
3+
cd /d "%~dp0"
4+
5+
rem 1) На всякий случай чистим служебную переменную Composer,
6+
rem чтобы она не подменяла путь к composer.json
7+
set "COMPOSER="
8+
9+
if not exist "composer.json" (
10+
echo [ERROR] %CD%\composer.json not found
11+
exit /b 1
12+
)
13+
14+
rem 2) Находим Composer-CLI
15+
where composer >nul 2>nul
16+
if %errorlevel%==0 (
17+
set "COMPOSER_CMD=composer"
18+
) else (
19+
if exist "composer.phar" (
20+
set "COMPOSER_CMD=php -d xdebug.mode=off composer.phar"
21+
) else (
22+
echo [ERROR] Composer not found in PATH and composer.phar is missing
23+
exit /b 1
24+
)
25+
)
26+
27+
echo [INFO] %CD% -> %COMPOSER_CMD% dump-autoload -o
28+
%COMPOSER_CMD% dump-autoload -o
29+
exit /b %errorlevel%

doc/search/all_0.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/search/all_1.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/search/all_10.js

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/search/all_11.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/search/all_12.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)